Workflow Diagnosting: checking SMTP server connection from server through command line.
Hi,
Workflow Mailer in oracle EBS needs your special attention as an administrator, as on the same time it is a critically important and highly unstable ( with poor monitoring and configuration ). However it could be smooth with regular maintenance, and monitoring.
I decided to share some of experiences with WF notification one by one in my different posts; meanwhile you are always welcome to ask any query but after googling it.
In this post i will share how to check your SMTP server, if its working fine by sending the email through command line from your linux server.
If you are able recieve an email it means your SMTP server is all good, now you need to check your application configuration, I will post further diagnostics time to time.
keep in touch.
Take care
Workflow Mailer in oracle EBS needs your special attention as an administrator, as on the same time it is a critically important and highly unstable ( with poor monitoring and configuration ). However it could be smooth with regular maintenance, and monitoring.
I decided to share some of experiences with WF notification one by one in my different posts; meanwhile you are always welcome to ask any query but after googling it.
In this post i will share how to check your SMTP server, if its working fine by sending the email through command line from your linux server.
IMPORTANT: Please run these commands from the concurrent tier node as owner of concurrent manager.
telnet <...> 25
Replace the <....> with the SMTP server name
EHLO <.....>
Replace <.....> with the server where the Java Mailer(concurrent processing tier) runs.
MAIL FROM: <.....>
Replace the <.....> with value of reply-to parameter
RCPT TO: <.....>
Replace <.....> with email address where you want to send email - Soban.dba@gmail.com
DATA
here you enter subject, body, and finish with single dot on new line
QUIT
Check if email test is received
If you are able recieve an email it means your SMTP server is all good, now you need to check your application configuration, I will post further diagnostics time to time.
keep in touch.
Take care
Comments
Post a Comment