1. 程式人生 > >centos 7 postfix配置163郵箱發送郵件

centos 7 postfix配置163郵箱發送郵件

mct smt 認證方式 密碼 plain global password mail word

[root@Linux-svn .certs]# vim /etc/mail.rc #修改配置文件,最後面添加即可 set [email protected] set smtp.163.com set smtp-auth-user=wcczcl set smtp-auth-password=1454545 set smtp-auth=login set smtp-use-starttls set ssl-verify=ignore set nss-config-dir=/etc/pki/nssdb/

from:對方收到郵件時顯示的發件人
smtp:指定第三方發郵件的smtp服務器地址
set smtp-auth-user:第三方發郵件的用戶名

set smtp-auth-password:用戶名對應的密碼,有些郵箱填的是授權碼
smtp-auth:SMTP的認證方式,默認是login,也可以改成CRAM-MD5或PLAIN方式

因為需要 163郵箱的 SSL 證書,所以我們還需要手動的獲取163郵箱的證書保存到本地指定的目錄裏以備調用和驗證,具體命令如下:

mkdir -p /root/.certs/
echo -n | openssl s_client -connect smtp.163.com:465 | sed -ne ‘/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p‘ > ~/.certs/163.crt
certutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/.certs/163.crt
certutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/.certs/163.crt
certutil -L -d /root/.certs

為了防止出現前文所說的發送郵件警告提示,還需要進入郵箱 SSL 證書存放目錄 /root/.certs 裏執行如下命令:

cd /root/.certs/
certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ./ -i 163.crt

返回如下提示即可:
Notice: Trust flag u is set automatically if the private key is present.

systemctl start postfix #啟動郵件服務

測試:
echo "test" | mail -s "ec" [email protected]

centos 7 postfix配置163郵箱發送郵件