[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