转载请注明出处,博客地址:http://blog.csdn.net/wodatoucai谢谢!!
1.安装sendmail:yum install -y sendmaill
2.安装mail:yum install -y mail
3.安装mutt:yuminstall -y mutt
4.启动sendmail:/etc/init.d/sendmail start
5.查看sendmail状态:/etc/init.d/sendmail status
如果出现,证明启动失败,原因为postfix与sendmail冲突。
6.查看postfix状态:service postfix status
7.停止postfix:service postfix stop
8.重启sendmail:/etc/init.d/sendmail restart
9.测试发送邮件:echo 'test' | mail -s 'test' xxx@qq.com
原文链接:https://www.f2er.com/centos/381732.html