码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu配置外部smpt email 发送外网

时间:2020-01-16 16:12:16      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:ram   外部   bcb   verify   常用命令   plain   office365   xen   编辑器   

  • 添加heirloom-mailx apt源
    cat /etc/apt/sources.list.d/mailx.list
    deb http://cz.archive.ubuntu.com/ubuntu xenial main universe

  • 更新apt
    apt update

  • 安装heirloom-mailx
    apt install heirloom-mailx -y

  • 配置外部发件邮箱
    编辑 /etc/s-nail.rc在最后加上:

    for 163邮箱

    set from="xxxxx@163.com" #发件地址
    set smtp="smtps://smtp.163.com:465" #smtp服务器
    set smtp-auth-user="xxxxxx@163.com" #登录发件地址
    set smtp-auth-password="xxxx" #明文密码
    set smtp-auth=login #登录方式,默认是login,也可以改成CRAM-MD5或PLAIN方式

    for outlook

    set from="xxxx@outlook.com"
    set smtp="outlook.office365.com:587"
    set smtp-auth-user="xxxx@outlook.com"
    set smtp-auth-password="xxxx" #明文密码
    set smtp-use-starttls #加密方式
    set ssl-verify=ignore # 忽略ssl认证
    set smtp-auth=login

    for QQ mail

    set from="xxx@qq.com"
    set smtp="smtps://smtp.qq.com:465"
    set smtp-auth-user="xxx@qq.com"
    set smtp-auth-password="ahkphxxabcbshabbga" #QQ邮箱授权码
    set smtp-auth=login

  • 常用命令
    常用命令:
    n:不读入设置文件(本系统中是/etc/s-nail.rc)(这个文件允许用户使用外部邮件传输代理而不是使用系统自带的sendmail发送邮件)。
    s:设置邮件的主题信息。
    c:使用一个抄送列表。
    b:使用一个密送列表。
  • 发送测试邮件
    echo "内容"|s-nail -s "主题" xxxx@163.com,xxxx@outlook.com #多个邮箱用逗号隔开
    或者:
    s-nail -s "邮件主题" xxx@163.com < result.txt
    加参数v可以看到mail输出的详细信息
    s-nail -vs "邮件主题" xxx@163.com < result.txt
  • 发送带附件
    s-nail -a 附件 -s "主题" 收件地址 < 文件(邮件正文.txt)
    s-nail -a /xxx.tar.gz -s "主题" xxx@163.com < ./xxx.txt
  • shell 当编辑器,编辑完内容后按Ctrl-D结束
    s-nail -s ‘主题‘ xxx@163.com
  • ubuntu配置外部smpt email 发送外网

    标签:ram   外部   bcb   verify   常用命令   plain   office365   xen   编辑器   

    原文地址:https://blog.51cto.com/lemonnews/2467203

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