Ubuntu使用fetchmail+procmail收邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu使用fetchmail+procmail收邮件相关的知识,希望对你有一定的参考价值。
Ubuntu使用fetchmail+procmail收邮件:
$ sudo apt-get install fetchmail
$ sudo apt-get install procmail
$ cp -rv /usr/share/doc/fetchmail/examples/fetchmailrc.example ~/.fetchmailrc
$ vi ~/.fetchmailrc (最后添加)
poll pop.126.com with protocol pop3
username "[email protected]"
password "xxxxxx" (此处仍为授权码,非邮箱密码)
mda "/usr/bin/procmail -d %T"
no keep
:wq
$ 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 aa /var/spool/mail/aa
$ fetchmail -v (进行邮件同步)
$ mutt (就能看到邮件箱邮件了)
q:退出 r:回复(根据提示操作即可)
以上是关于Ubuntu使用fetchmail+procmail收邮件的主要内容,如果未能解决你的问题,请参考以下文章
在命令行上 使用 mutt, fetchmail, maildrop, msmtp 收发邮件
打造终端下mutt收发邮件环境(fbterm,fetchmail,msmtp,procmail,mutt)