linux 邮箱配置

linux 邮箱配置

QQ邮箱

[root@centos7 ~]# vim /etc/mail.rc
#在最后面添加下面行
set from=29308620@qq.com
set smtp=smtp.qq.com
set smtp-auth-user=29308620@qq.com
set smtp-auth-password=esvnhbnqocirbicf
set smtp-auth=login
set ssl-verify=ignore

163 邮箱配置

[root@centos7 ~]#vi /etc/mail.rc
set from=[email protected] #之前设置好的邮箱地址
set smtp=smtp.163.com #邮件服务器
set smtp-auth-user=[email protected] #之前设置好的邮箱地址
set smtp-auth-password=QXFIOQXEJNSVSDM #授权码
set smtp-auth=login #默认login即可

发送测试邮件

[root@centos7 ~]# yum -y install mailx
[root@centos7 ~]# echo "Test Mail"| mail -s Warning [email protected]

# Warning 指的是邮件标题

你可能感兴趣的:(linux,linux,运维,服务器)