centos 7 安装 mail
生活随笔
收集整理的這篇文章主要介紹了
centos 7 安装 mail
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
yum install -y sendmail
將下面內容粘貼到/etc/mail.rc中
set ssl-verify=ignore set nss-config-dir=/root/.certs set from=xxx@163.com set smtp=smtps://smtp.exmail.qq.com:465 set smtp-auth-user=xxx@163.com set smtp-auth-password=xxxx set smtp-auth=login逐行執行下面指令
cd /root mkdir .certs echo -n | openssl s_client -connect smtp.exmail.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 cd /root/.certs/ certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ./ -i qq.crt重啟sendmail服務
systemctl restart sendmail發送郵件
mail -v -s "test" 351865576@qq.com< /data/content.txt
?
錯誤:
Error initializing NSS: Unknown error -8015.
上面的錯誤是因為沒有權限導致
修復辦法:
1. 修改.certs 第三組權限為rwx
chmod 777 -R?.certs
第一組權限:文件所有者有讀的權限
第二組權限:文件所有者的組用戶有執行和讀的權限
第三組權限:不與文件所有者同組的用戶有執行的權限,但是沒有讀的權限。
2. 將.certs移動到/etc/mail/目錄下
3. 修改/etc/mail.rc中的/root/.certs為/etc/mail/.certs
4. 重啟服務
轉載于:https://www.cnblogs.com/zyh1994/p/10883364.html
總結
以上是生活随笔為你收集整理的centos 7 安装 mail的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SVN中“txn-current-loc
- 下一篇: 剪刀,石头,布,小游戏脚本