This is document explains how to troubleshoot the issue if BO server is not sending the emails when we configure the job server to send the email sent to
mail -addresses if enable notification is on while scheduling the reports.
Below steps will ensure there is a connectivity between BO Server and SMTP Server via command Prompt.
First send an email through the command line to verify connectivity from the Enterprise server.
Below steps should be done from the BusinessObjects Server (if distributed environment, should be done from server where the Job Server is located).
- Open the cmd prompt:
Start -> Run or press win key + R, then type cmd >> OK - Type telnet server.com 25
where "server.com" is the name of the smtp (outgoing) server of your email provider, such as smtp-server.austin.rr.com). This can be found by checking your account info in the program you normally use for email - Type HELO server.com.
- Type MAIL FROM:you@server.com.
- You may get a message saying "250 ok"
- Type RCPT TO:Friend1@anotherserver.com etc.
- Again, you may get a message saying "250 ok"
- To write the message, type DATA and press Enter.
- On the first line type SUBJECT:yoursubject and press Enter twice.
- Continue typing your message.
- Put a single period (.) on a line by itself and press Enter to send your message.
The server should say 'Message accepted for delivery'. (Or it says 250 OK id=`a long id`)
- Type QUIT to exit Telnet.