Ubuntu使用mutt收发回复邮件(mutt+msmtp+fetchmail+procmail

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu使用mutt收发回复邮件(mutt+msmtp+fetchmail+procmail相关的知识,希望对你有一定的参考价值。

Ubuntu使用mutt收、发、回复邮件(mutt+msmtp+fetchmail+procmail):

说明:
Mutt为基于文本的邮件客户端,担当邮件用户代理角色,msmtp的作用是发邮件(包括回复),fetchmail的作用是将邮件保存到本地邮箱,procmail的作用是进行邮件过滤(根据发件人、主题、关键字等对邮件进行排序、分类、整理)。

软件安装:
$ sudo apt-get install mutt
$ sudo apt-get install msmtp
$ sudo apt-get install fetchmail
$ sudo apt-get install procmail

Mutt配置:
$ cp –rv /etc/Muttrc ~/.muttrc
$ vi ~/.muttrc
set sendmail="/usr/bin/msmtp"
set use_from=yes
set realname="zhi.yang"
set [email protected]
set envelope_from=yes
:wq

Msmtp配置:
$ vi ~/.msmtprc
account default
host smtp.ming.com
port 587
from [email protected]
user [email protected]
password xxxxx
auth ntlm (auth模式根据邮箱服务器的支持情况而定)
tls off
logfile ~/.msmtp.log
:wq

$ msmtp --host=smtp.ming.com --port 587 --serverinfo(查看邮箱服务器支持的auth模式)

Fetchmail配置:
$ cp –rv /usr/share/doc/fetchmail/examples/fetchmailrc.example ~/.fetchmailrc
$ vi ~/.fetchmailrc
poll smtp.ming.com with protocol pop3
username "[email protected]"
password "xxxxxx"
mda "/usr/bin/procmail -d %T"
no keep
:wq

Procmail配置:
$ vi ~/.procmailrc
VERBOSE=yes
DEFAULT=/var/spool/mail/aa
MAILDIR=$HOME/Mail
LOGFILE=$HOME/.procmail.log
:wq

$ sudo touch /var/spool/mail/aa (此处的aa为随意写的,可自行定义)
$ sudo chown zhi.yang /var/spool/mail/aa

使用:
$ fetchmail –v (进行邮件同步)
$ mutt (就能看到收件箱邮件了)
q:退出,r:回复(根据提示操作即可)

发送1人:
$ echo “hello” | mutt -s “title” [email protected]
$ mutt –s “title” [email protected] < ~/aa.txt

发送多人:
$ echo “hello” | mutt -s “title” [email protected] [email protected]

抄送邮件:
$ echo “hello” | mutt -s “title” [email protected] -c [email protected]

密送邮件:
$ echo “hello” | mutt -s “title” [email protected] -b [email protected]

发送附件:
$ echo “hello” | mutt -s “title” [email protected] -a ~/aa.txt

以上是关于Ubuntu使用mutt收发回复邮件(mutt+msmtp+fetchmail+procmail的主要内容,如果未能解决你的问题,请参考以下文章

linux mutt邮件发送配置

linux下mutt邮件发送系统安装操作记录

linux命令——mutt的安装和使用

打造终端下mutt收发邮件环境(fbterm,fetchmail,msmtp,procmail,mutt)

在命令行上 使用 mutt, fetchmail, maildrop, msmtp 收发邮件

ubuntu下使用mutt+msmtp发送邮件