本文共 757 字,大约阅读时间需要 2 分钟。
一、安装mailx邮件客户端:
yum install mailx -y二、修改/etc/mail.rc配置文件:
set ssl-verify=ignore
set nss-config-dir=/root/.certsset from=abc@qq.comset smtp=smtps://smtp.qq.com:465set smtp-auth-user=abc@qq.comset smtp-auth-password=qq邮箱授权码set smpt-auth=login三、配置证书:
mkdir -p /root/.certs/echo -n | openssl s_client -connect smtp.qq.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/qq.crtcertutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crtcertutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crtcertutil -L -d /root/.certs四、在自己的qq邮箱获取授权码:
把生成的授权码复制粘贴到第二步set smtp-auth-password=即可。
五、最后发送邮件:
echo "i am victor chen,hi" | mail -v -s "say hello" xxx@qq.com转载于:https://blog.51cto.com/victor2016/2402004