码迷,mamicode.com
首页 > 其他好文 > 详细

发送不了邮件

时间:2018-03-24 11:31:54      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:邮件发送   配置文件   

今天在弄一个邮件通知的时候,突然发现连最基本的邮件都发不出去,报错了

[root@xhk ~]# echo ‘标题‘ | mail -s "内容" xxxxxxx@qq.com

出现异常:
[root@xhk ~]# send-mail: fatal: parameter inet_interfaces: no local interface found for ::1

查看centos中的postfix日志
more /var/log/maillog
postfix: fatal: parameter inet_interfaces: no local interface found for ::1

vim /etc/postfix/main.cf

可以看到这里的配置文件配置的是localhost,问题就出现在这里
inet_interfaces = localhost
inet_protocols = all

我们把他改成
inet_interfaces = all
inet_protocols = all

重新启动邮件服务
[root@xhk ~]# systemctl restart postfix

再次发送邮件,成功!!!

技术分享图片

发送不了邮件

标签:邮件发送   配置文件   

原文地址:http://blog.51cto.com/xhk777/2090588

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!