mail程序如何接收pop邮件?
各位如何用mail or mutt 程序接收外部pop邮件?是不是必需运行sendmail?谢谢!如何配置mail? sendmail是用来发信的用fetchmail
在$HOME/.fetchmailrc中加入
set daemon 60
poll pop.host.com
protocol POP3
user "你的ID"
password "你的密码"
如果在编译时没有加入fetchmail的开机自起动然daemon,就在shell的启动脚本里加入
!fetchmail &
fetchmail每60秒检查一次pop邮箱里的邮件,收回来,并且转发到本地信箱。
其实mutt在编译时可以加入pop功能,如果你已经编译了这个,可以不用fetchmail
直接在你的$HOME/.muttrc中加入
set pop_host="pop://你的ID:你的密码@pop.host.com"
在mutt里按 ^g 就可以取邮件了
页:
[1]