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

Linux下配置用msmtp和mutt发邮件

时间:2016-05-09 11:15:52      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:mutt msmtp

Linux下可以直接用mail命令发送邮件,但是发件人是user@servername,如果机器没有外网的dns,其他人就无法回复。此时,有一个可以使用网络免费邮箱服务的邮件发送程序就比较重要了。msmtp就是这样的一个程序。


#1、下载源码包


wget http://sourceforge.net/projects/msmtp/files/msmtp/1.4.31/msmtp-1.4.31.tar.bz2/download


#2、解压


tar -jxvf msmtp-1.4.31.tar.bz2 && cd msmtp-1.4.31


#build and install


./configure --prefix=/usr/local/msmtp && make && make install


#link to /usr/bin


ln -s /usr/local/msmtp/bin/msmtp /usr/bin/msmtp


#3、新建msmtp的配置文件


mkdir /usr/local/msmtp/etc 


mkdir /var/log/msmtp/


vim /usr/local/msmtp/etc/msmtprc


#4、输入如下内容


# Set default values for all following accounts.

defaults


logfile /var/log/msmtp/msmtp.log

# The SMTP server of the provider.

account 163


# SMTP邮件服务器地址

host smtp.163.com


# 发送的邮件Email

from user@163.com

auth login


# 邮件服务器登录账号

user user@163.com


# 邮件服务器登陆密码

password password

# Set a default account

account default : 163


#5、测试msmtp是否配置正确


msmtp test@163.com

[ctrl+d]


#6、安装配置mutt

yum install -y mutt

vim /etc/Muttrc



#输入如下内容:

set sendmail=‘/usr/bin/msmtp‘

set use_from=yes

set realname="user@163.com"

set from=user@163.com


好了,让我们来测试一下吧!

echo "testmail" | mutt -s "测试" -a /etc/hosts user@example.com

这里的-a 是指添加附件,如果是多个附件的话就 多加几个 -a 文件名

还可以这样

mutt -s "测试" -a /etc/hosts -a /etc/apple user@example.com < /tmp/imax.txt

这个的意思就是以 /tmp/imax.txt 文件的内容作为邮件内容。

echo "This is the body" | mutt -s "Testing" user@example.com -a /etc/hosts -a /etc/apple

好了,就这么简单


Linux下配置用msmtp和mutt发邮件

标签:mutt msmtp

原文地址:http://leomars.blog.51cto.com/683246/1771341

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