安装好了这两个包之后,就是进行相关配置文件的配置了:
首先配置 mutt,系统全局设置配置文件在 /etc/Muttrc,如果使用某个系统用户,可以在~/.muttc中设置,没有该文件,就自己创建。
vi .muttrc
2 setuse_from = yes
3 setrealname = zhxia 4 setfrom = zhenghongxia @ anjuke.com
5 setenvelope_from = yes @H_502_1@
@H_502_1@
接着,配置msmtp
创建 ~/.msmtprc 和 ~/.msmtp.log,分别为配置文件和日志文件
vi .msmtprc
2 hostsmtp.corpease.net
3 fromzhenghongxia @ anjuke.com
4 authplain
5 userzhenghongxia @ anjuke.com
6 password xxxxxxx
7 logfile~ / .msmtp.log @H_502_1@
chmod 600 .msmtprc
同时创建 日志文件 touch ~/.msmtp.log
做完了以上的配置之后,可以进行邮件的发送测试了:
查看SMTP服务器是否支持认证的TLS加密: @H_502_1@
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
@H_502_1@
发送邮件测试:
一般情况下,均可已正常接收邮件。
下面是一个比较完整的发送邮件示例:
hello " 252578390 @ qq.com,zhenghong - xia @ 163 .com - c 402714871 @ qq.com - a / tmp / ip.tmp @H_502_1@
发送给多人,抄送,添加附件
address
=
zhenghongxia@anjuke.com
"
echo
$content
|
mutt
-
s
${subject}
"
-
e'setcontent_type
=
text/html
"
'
-
e'send
-
hook.
my_hdrX-Priority:1
"
'
$address
@H_502_1@
发送邮件时设置邮件的文本类型为:html格式,邮件的等级为:重要
参考文章:
http://hi.baidu.com/realasking/blog/item/10c1c3d346be6cd2a9ec9adc.html