(1) yum -y install mailx
(2)which mail 测试是否安装成功
(3)编辑配置文件 vim /etc/mail.rc
(4)去qq邮箱
打开POP3/SMTP/IMAP功能
(5)手动获取qq邮箱的证书
因为阿里云 ECS 封禁了25端口,所以我们只能使用 TLS 方式(TSL 也就是使用 SSL 加密的方式,使用465或者其他端口来发送邮件)绕过25端口需求来发送邮件,所以必须先获得邮箱的 SSL 证书并存放到本地,最后一行的 nss-config-dir 就是制定的存放 QQ 邮箱 SSL 证书的位置。
因为需要 QQ 邮箱的 SSL 证书,所以我们还需要手动的获取QQ 邮箱的证书保存到本地指定的目录里以备调用和验证,具体命令如下:
mkdir -p /root/.certs/
echo -n | openssl s_client -connect smtp.qq.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/qq.crt
certutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt
certutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt
certutil -L -d /root/.certs
为了防止出现前文所说的发送邮件警告提示,还需要进入邮箱 SSL 证书存放目录 /root/.certs 里执行如下命令:
certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ./ -i qq.crt1
返回如下提示即可:
**Notice: Trust flag u is set automatically if the private key is present.**1
这是为了信任证书的标记操作。
(6)测试
echo "发送成功" | mail -s "测试" xxx@qq.com
详见:
原文:https://blog.csdn.net/yiluohan0307/article/details/80514319
阅读(907) | 评论(0) | 转发(0) |