ubuntu邮箱配置

sudo apt-get install mutt

sudo apt-get install msmtp

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

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

vi .muttrc

1 setsendmail = " /usr/bin/msmtp "
2 setuse_from = yes
3 setrealname = zhxia 4 setfrom = zhenghongxia @ anjuke.com
5 setenvelope_from = yes

接着,配置msmtp

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

vi .msmtprc

1 account default
2 hostsmtp.corpease.net
3 fromzhenghongxia @ anjuke.com
4 authplain
5 userzhenghongxia @ anjuke.com
6 password xxxxxxx
7 logfile~ / .msmtp.log

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

chmod 600 .msmtprc

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

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

查看SMTP服务器是否支持认证的TLS加密:

1 zhxia @ zhxia - Desktop:~ $ msmtp -- host = smtp.corpease.net -- serverinfo
2 SMTPserveratsmtp.corpease.net(mail3.corpease.net[ 61.145 . 121.45 ]),port 25 :
3 corpease.netAnti - spamGT for CoremailSystem(corpease[ 20100527 ])
4 Capabilities:
5 PIPELINING:
6 Support for commandgrouping for fastertransmission
7 AUTH:
8 Supportedauthenticationmethods:
9 PLAINLOGIN

发送邮件测试:

1 echo helloworld " | mutt - s title " 252578390 @ qq.com

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

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

hello " 252578390 @ qq.com,zhenghong - xia @ 163 .com - c 402714871 @ qq.com - a / tmp / ip.tmp

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

address = zhenghongxia@anjuke.com "
echo
$content | mutt - s ${subject} " - e'setcontent_type = text/html " ' - e'send - hook. my_hdrX-Priority:1 " ' $address

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

参考文章

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

相关文章

目录前言一、创建Hadoop用户二、更新apt和安装Vim编辑器三、...
原文连接:https://www.cnblogs.com/yasmi/p/5192694.html ...
电脑重启后,打开VirtualBox,发现一直用的虚拟机莫名的消失...
参见:https://blog.csdn.net/weixin_38883338/article/deta...
Ubuntu 18.04 LTS 已切换到 Netplan 来配置网络接口。Netpla...
介绍每个 Web 服务都可以通过特定的 URL 在 Internet 上访问...