Linux Centos7發送QQ郵件

1、關閉本機的sendmail服務或者postfix服務

#sendmial
service sendmail stop
chkconfig sendmail off

#postfix
service postfix stop
chkconfig postfix off

2、安裝mailx

yum -y install mailx
ln -s /bin/mailx /bin/mail
chown -R zabbix.zabbix /bin/mail

3、安裝證書

mkdir -p /etc/pki/nssdb/
cd /etc/pki/nssdb

echo -n | openssl s_client -connect smtp.qq.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /etc/pki/nssdb/qq.crt 
 
certutil -A -n "GeoTrust SSL CA" -t "C,," -d /etc/pki/nssdb/ -i /etc/pki/nssdb/qq.crt  
certutil -A -n "GeoTrust Global CA" -t "C,," -d /etc/pki/nssdb/ -i /etc/pki/nssdb/qq.crt  
certutil -L -d /etc/pki/nssdb/ 
certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu"  -d ./ -i qq.crt

4、配置郵件

(1)獲取受權碼




安裝步驟操做,發送完郵件會生成一個受權碼,複製保存稍後使用html

(2)配置郵件信息

vim /etc/mail.rc

在文本最後插入vim

set nss-config-dir=/etc/pki/nssdb/
set smtp-user-starttls
set ssl-verify=ignore
 
set from=123456@qq.com #使用本身的QQ郵箱,這個是發件箱
set smtp=smtps://smtp.qq.com:465
set smtp-auth-user=123456@qq.com #外部smtp服務器認證的用戶名,也是QQ郵箱
set smtp-auth-password=受權碼
set smtp-auth=login

5、測試

echo  test | mail -v -s " test"  test@qq.com  #此郵箱爲收件箱,使用其餘郵箱做爲收件箱

測試成功

測試失敗(這是多半是證書問題)
centos

參考資料

Linux 使用命令發送郵件
Linux CentOS7 Zabbix郵件報警 經過QQ企業郵箱發送郵件的問題解決方案服務器

相關文章
相關標籤/搜索