redhat senmail Connection refused by [127.0.0.1] 的解决方法

今日無聊,玩一個rh9的服務器(以前是rh7),sendmail啟動後,發現本地mail無法交換信件,25端口根本沒有打開(netstat-an查看),查看/var/log/maillog,出現......[127.0.0.1] connectionrefused......的錯誤,折騰半天,總算弄明白了。RH9默認sendmail僅僅是一個mail client,not server,於是設置也是按照mail client配置的。解決方法:
 1、配置sendmail為服務狀態:修改/etc/sysconfig/sendmail中的DAEMON為DAEMON=yes
2、修改/etc/mail/sendmail.mc的LOCAL_DOMAIN('本機域名')dnl,以及DAEMON_OPTIONS(port=smtp,Name=MTA)dnl。
 ** 如果這裡:DAEMON_OPTIONS(port=smtp,addr=192.168.1.x,Name=MTA)dnl,那麼外部可以連接,本地用戶無法接受信件。
 3、刷新設置文件:#cd /etc/mail ; make -C /etc/mail
4、重啟sendmail:#/etc/init.d/sendmail restart

你可能感兴趣的:(redhat,server,domain)