标签:linux smtp
yum install mail
修改 /etc/mail.rc
清空文件加入
set from=ysy399268824@163.com
smtp=smtp.163.com #smtpserver
set smtp-auth-user=ysy399268824
smtp-auth-password=密码
smtp-auth=login #smtp account
因为mail命令默认会使用sendmail或者postfix发送邮件
sendmail
# service sendmail stop
# chkconfig sendmail off
postfix
# service postfix stop
# chkconfig postfix off
然后测试
echo helloword|mail -s "test" xxxxxx@qq.com
测试smtp登录可以使用windows测试下 参考他的微博 http://blog.sina.com.cn/s/blog_6dbfc2a901014yqx.html
telnet smtp.163.com
helo 163.com
auth login
本文出自 “云の记事本” 博客,请务必保留此出处http://youngcloud.blog.51cto.com/2873694/1659244
标签:linux smtp
原文地址:http://youngcloud.blog.51cto.com/2873694/1659244