Configure sendmail as a smart host
Smart host is very handy if you are on dial up network or sometimes a host finds mail that it is unable to deliver directly to the desired remote host.
In large network, it is good idea to have a single host/mail server acting as MTA. Smart hosts are usually used when all other methods of delivery have failed. In the case of the organization with the private network, it would be perfectly reasonable to have the hosts attempt to deliver mail directly first, and if that fails then to send it to the smart host. This relieves the smart host of a lot of traffic because other hosts can directly send mail to other hosts on the private network.
The SMART_HOST macro allows you to specify the host that should relay all outgoing mail that you are unable to deliver directly, and the mail transport protocol to use to talk to it.
Open your configuration file:# vi /etc/mail/sendmail.mcAppend or modify macro that read as follows :define(`SMART_HOST',`smtp.net4india.com')Replace smtp.net4india.com with your actual smtp server address. If line contains word, dnl remove the dnl word. Regenerate a new sendmail.cf config file with m4 command:# m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cfRestart sendmail service:# /etc/init.d/sendmail restart
See also:
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- Configure Sendmail SSL encryption for sending and receiving email
- Force sendmail to route mail to specific hosts or mailserver
- Sendmail blocking spam email id, ips with access database
- FreeBSD: Get / Read Hard Disk Temperature using smartd tools
- Sendmail Limiting Denial of Service (DOS) Attack
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!


March 13th, 2008 at 12:14 am
I can’t send emails (sendmail) to other domains in the internet. I can send mails to yahoo.com but to some domains it bounce back, giving me a message of unknown host.
How can I correct this?
June 28th, 2008 (2 weeks ago) at 10:13 am
How to do conditional SMART HOSTING based on FROM header ?
For example, I set from address in an email of mine to my gmail address, then it should go via Gmail’s SMTP with my *GMAIL* account; otherwise it should go via my Google Apps account.