Linux下利用mailx配置腾讯企业邮箱smtps 465端口发送邮件
安装和配置 mailx
这里以服务器首选的 CentOS 7为例(好像默认都已经集成了 mailx )
安装mailx
yum -y install mailx
编辑 /etc/mail.rc 文件配置 mailx
vim /etc/mail.rc
在配置文件最后添加如下腾讯企业邮箱 邮箱配置即可
set from=xxxxxx@$domain.com set smtp=smtps://smtp.exmail.qq.com:465 set smtp-auth-user=xxxxxx@$domain.com set smtp-auth-password=你的腾讯企业邮箱密码 set smtp-auth=login set ssl-verify=ignore set nss-config-dir=/etc/zabbix/scripts/.certs
配置腾讯企业邮箱的 SSL 证书
最后一行的 nss-config-dir 就是制定的存放 QQ 邮箱 SSL 证书的位置
mkdir -p /etc/zabbix/scripts/.certs
echo -n | openssl s_client -connect smtp.qq.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /etc/zabbix/scripts/.certs/qq.crt
certutil -A -n “GeoTrust SSL CA” -t “C,,” -d /etc/zabbix/scripts/.certs/ -i /etc/zabbix/scripts/.certs/qq.crt
certutil -A -n “GeoTrust Global CA” -t “C,,” -d /etc/zabbix/scripts/.certs/ -i /etc/zabbix/scripts/.certs/qq.crt
certutil -L -d /etc/zabbix/scripts/.certs/
为了防止出现前文所说的发送邮件警告提示,还需要进入邮箱 SSL 证书存放目录
.certs
里执行如下命令cd /etc/zabbix/scripts/.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.
这是为了信任证书的标记操作,至此,mailx的配置已经完成
通过命令行测试发送邮件
mailx -s “邮箱测试” xxxx@$domain.com < message_file.txt
转载请注明来源