linux mail -s发送邮件异常解决

linux mail -s发送邮件异常解决_第1张图片

 

异常:

Error initializing NSS: Unknown error -8015.
"/root/dead.letter" 11/301
. . . message not sent.
 

出现此问题,大概率是和证书相关。如果没有安装证书,请先安装:

1,下载

yum -y install mailx

2,配置mail

vim /etc/mail.rc 这里根据自己的邮箱(qq/163邮箱)

set [email protected]

set smtp=smtps://smtp.qq.com:465

set [email protected]

set smtp-auth-password=你的 邮箱授权码(登陆邮箱查看)

set smtp-auth=login

set ssl-verify=ignore

set ssl-verify=ignoreset nss-config-dir=/root/.certs

3,配置SSL证书

创建文件夹:

mkdir -p /root/.certs/

运行下面脚本:qq.crt(以下默认已这个代替,按照自己的生成即可)

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

4、为了防止出现前文所说的发送邮件警告提示,还需要进入邮箱 SSL 证书存放目录 /root/.certs 里执行如下命令:

[root@web01 ~]# cd /root/.certs

[root@web01 .certs]# certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ./ -i qq.crt

Notice: Trust flag u is set automatically if the private key is present.出现这句就可以

5、通过命令行发送测试邮件

[root@web01 ~]# echo "测试看看" | mail -s "测试邮件" [email protected]


由于我已经安装过证书,从其他地方直接做的拷贝,因此我只需要执行第4步即可。

希望你一路绿灯~~~

欢迎大家来我的 chatgpt中提问:

你的Chat GPT 助理已上线,快来召唤它吧~

 linux mail -s发送邮件异常解决_第2张图片

 

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