怎样在 Debian GNU/Linux 下用POP3协议收信

 怎样在 Debian GNU/Linux 下用POP3协议收信
作者:wide288 日期:2004年7月14日
安装必要的使用软件:
apt-get install fetchmail mutt
装好后下面要配置一下。
fetchmail 也许在 ~/ 目录下并没有配置文件,需要自己创建一个。

vim ~/.fetchmailrc
#此行是注释,yahoo的服务器,POP3协议,wide288是用户名,password是密码。
poll pop.mail.yahoo.com.cn with proto POP3
user 'wide288' there with password 'password' keep

下面配置 mutt
我把我的配置文件写出来:

vim ~/.muttrc
set charset="gb2312"
set send_charset="us-ascii:iso-8859-1:gb2312:big5:utf-8"
my_hdr From: [email protected]
#别名
charset-hook ^us-ascii$ gb2312
charset-hook ^iso-8859-1$ gb2312
#加入别名文件方便输入地址,要在同一目录创建 .mail_aliases 文件写出邮件地址列表
#详细的信息请看王垠的主页相关信息。
source ~/.mail_aliases
auto_view text/html
set ascii_chars=yes
set include
set indent_str="> "
score "~N" +4
score "~s gtk" +5
score "~f w2r007" +2
score "~s 通知" +2
score "~s Circulation" +3
score "~D" -5
score "~O" +1
score "~s believe" -10
set wait_key=yes
set pager_index_lines=13
#邮件列表显示
subscribe [email protected]
folder-hook . "ignore *; unignore from subject X-mailer date"
folder-hook sent.* "ignore *; unignore to subject date"

做完这些工作后,要测试一下:
fetchmail -c
如果通了。就可以了收信了。
fetchmail -a  #接收全部信件


mutt #查看信件内容

你可能感兴趣的:(GNU/Linux)