1. 程式人生 > >阿裏雲服務器上用465端口發送郵件

阿裏雲服務器上用465端口發送郵件

cer nor 安裝 阿裏雲服務器 第一步 添加用戶 nec col connect

第一步:安裝mailx郵箱服務器

yum -y install mailx

第二步:在mailx配置文件裏添加用戶名,密碼。mailx的配置文件是/etc/mail.rc這個文件。

技術分享圖片

set ssl-verify=ignore                                ###   啟用證書
set nss-config-dir=/root/.certs                      ###   證書存放的位置
set from="[email protected]"                      ###   郵箱
set smtp="smtps://smtp.163.com:465
" ### 郵箱服務器地址 set smtp-auth-user=sj9456478719@163.com ### 郵箱 set smtp-auth-password=xxxxxxxxxxxxxx ### 郵箱授權碼(不是郵箱登錄密碼,不知道的話自己上去開通)set smpt-auth=login ### 啟用自動連接登錄,就是發送郵件的時候自動連接到163服務器幫你發送郵件

第三步:既然要用到證書,那我們還得在163的服務器上申請一個證書。。證書名字自己定義(我這裏命令為163.crt

mkdir -p /root/.certs/                                        ###    證書存放位置
cd /root/.certs
###下面這幾條命令每一條我也不是太明白,我只知道生成了證書和證書文件,和啟用的證書!
echo -n |openssl s_client -connect smtp.163.com:465 |sed -ne ‘/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p‘ >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 -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ~/.certs/./ -i 163.crt
certutil -L -d /root/.certs

這樣就可以通過465的郵箱發送郵件了!!下面我們就來驗證一下是否能發送郵件吧!

echo "郵件正文" | mail -s "這是真的可以發送郵件了哦" [email protected]

技術分享圖片

技術分享圖片

技術分享圖片

阿裏雲服務器上用465端口發送郵件