In a new Solaris build, we go this problem about sendmail. It was connecting on sendmail port 25 only if hostname was localhost or 127.0.0.1. It was not listening on all the other IPs plumbed on the box. Here's what I did to make it listen on all IPs:
Stop sendmail
svcadm disable sendmail
cd /etc/mail
chmod 600 sendmail.cf
Search for this line:
O DaemonPortOptions=NAME=NoMTA4, Family=inet, Addr=127.0.0.1
Remove , Addr=127.0.0.1 so that the line now reads:
O DaemonPortOptions=NAME=NoMTA4, Family=inet
chmod 444 sendmail.cf
Start Sendmail
svcadm enable sendmail
Retest by doing
telnet hostname_of_server 25
If it still doesn't work, do this:
svccfg -s sendmail setprop config/local_only=false
svcadm refresh sendmail
svcadm restart sendmail
Blog dedicated to Oracle Applications (E-Business Suite) Technology; covers Apps Architecture, Administration and third party bolt-ons to Apps
Subscribe to:
Post Comments (Atom)
3 comments:
Done all of that and it still binds to localhost any other ideas short of the microsoft fix of rebooting?
Hello Vikram,
Thanks for quick solution you provided yes your tip worked for me and i can able to configure my mailer account.
For IMAP: The unix account needs to be present in /etc/access.conf and normal in /etc/passwd
Hello Vikram ,
Thanks alot for your quick solution provided, I am facing trouble while configuring the mailer account in the new Instance.
Followed your blog and got the clue fo fix the issue.
For IMAP: The unix account needs to be present in /etc/access.conf.
and normail account in /etc/passwd
Thanks
~RK
Post a Comment