码迷,mamicode.com
首页 > 其他好文 > 详细

entos 7 mailx配置163邮箱发送邮件

时间:2018-09-03 19:29:48      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:from   技术   dir   认证   http   smtp   授权   certutil   login   

配置:

set from=wcczcl@163.com
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=/root/.certs

from:对方收到邮件时显示的发件人
smtp:指定第三方发邮件的smtp服务器地址
set smtp-auth-user:第三方发邮件的用户名
set smtp-auth-password:用户名对应的密码,有些邮箱填的是授权码
smtp-auth:SMTP的认证方式,默认是login,也可以改成CRAM-MD5或PLAIN方式
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
cd /root/.certs/
certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ./ -i 163.crt

技术分享图片

 

 

 

 

参考资料:http://blog.51cto.com/ygtq666/2164919?source=dra

entos 7 mailx配置163邮箱发送邮件

标签:from   技术   dir   认证   http   smtp   授权   certutil   login   

原文地址:https://www.cnblogs.com/myvic/p/9579954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!