ubuntu邮箱配置

               
sudo apt-get install mutt
sudo apt-get install msmtp

安装好了这两个包之后,就是进行相关配置文件的配置了:

首先配置 mutt,系统全局设置配置文件在 /etc/Muttrc,如果使用某个系统用户,可以在~/.muttc中设置,没有该文件,就自己创建。

vi .muttrc

1      set sendmail  =  "  /usr/bin/msmtp  " 
2      set use_from  =  yes
3      set realname  =  "  zhxia  " 
4      set from  =  zhenghongxia  @  anjuke.com
5      set envelope_from  =  yes
 

接着,配置msmtp

创建 ~/.msmtprc 和 ~/.msmtp.log,分别为配置文件和日志文件

vi .msmtprc

复制代码
1   account   default 
2   host smtp.corpease.net
3   from zhenghongxia  @  anjuke.com
4   auth plain
5   user zhenghongxia  @  anjuke.com
6   password xxxxxxx
7   logfile ~  /  .msmtp.log
复制代码
扫描二维码关注公众号,回复: 5140641 查看本文章

由于password是明文,所以需要修改此文件的访问权限

chmod 600 .msmtprc 

同时创建 日志文件 touch ~/.msmtp.log

做完了以上的配置之后,可以进行邮件的发送测试了:

查看SMTP服务器是否支持认证的TLS加密:
复制代码
1   zhxia  @  zhxia  -  Desktop:~  $   msmtp   --  host  =  smtp.corpease.net   --  serverinfo
2   SMTP server at smtp.corpease.net (mail3.corpease.net [  61.145  .  121.45  ]), port   25  :
3       corpease.net Anti  -  spam GT   for   Coremail System (corpease[  20100527  ])
4   Capabilities:
5       PIPELINING:
6           Support   for   command grouping   for   faster transmission
7       AUTH:
8           Supported authentication methods:
9           PLAIN LOGIN 
复制代码

 发送邮件测试:

1   echo   "  hello world  "     |   mutt   -    "  title  "     252578390  @  qq.com

 一般情况下,均可已正常接收邮件。

 下面是一个比较完整的发送邮件示例:

1   echo   "  hello  "     |   mutt   -    "  title  "     252578390  @  qq.com,zhenghong  -  xia  @  163  .com       -    402714871  @  qq.com   -    /  tmp  /  ip.tmp

 发送给多人,抄送,添加附件

address  =  "  [email protected]  " 
echo 
  $content  |  mutt    -    "  ${subject}  "     -  e 'set content_type  =  "  text/html  "    - e 'send  -  hook .   "  my_hdr  X-Priority: 1  "    $address

 发送邮件时设置邮件的文本类型为:html格式,邮件的等级为:重要

参考文章:

 http://hi.baidu.com/realasking/blog/item/10c1c3d346be6cd2a9ec9adc.html

           

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

猜你喜欢

转载自blog.csdn.net/ggjttfc/article/details/86723558