首页 > 代码库 > sendmail设置外部邮箱
sendmail设置外部邮箱
1.设置邮箱的客户端授权码
2.开启smtp服务
3.安装sendmail
[root@DBserver01:~]# yum -y install sendmail
配置mail.rc,添加下面的信息
[root@DBserver01:~]# vi /etc/mail.rc
……
set from=nideyouxiang@163.com #外部发送邮箱地址
set smtp=smtp.163.com #外部smtp服务器地址
set smtp-auth-user=nideyouxiang #外部smtp服务器认证的用户名
set smtp-auth-password=nidemima #密码,此处使用网易授权密码(第一步的授权码)
set smtp-auth=login #邮箱认证的方式
4.重启sendmail
[root@DBserver01:~]# service sendmail restart
Shutting down sm-client: [ OK ]
Shutting down sendmail: [ OK ]
Starting sendmail: [ OK ]
Starting sm-client: [ OK ]
5.测试效果
[root@DBserver01:~]# echo "sendmail测试" | mail -S "Linux外部邮箱发信测试" *********@qq.com
本文出自 “黄鹂鸟” 博客,请务必保留此出处http://1349162374.blog.51cto.com/5677845/1845884
sendmail设置外部邮箱