用mutt+getmail+msmtp收发gmail

发布于 2022-07-21 23:02:01 字数 2201 浏览 10 评论 0

安装mutt,msmtp和getmail,我用的是Ubuntu dapper,repository中有,直接apt-get install就可以了。

网站分别为:

http://www.mutt.org/
http://msmtp.sourceforge.net/
http://pyropus.ca/software/getmail/

getmail是个类似于fetchmail的程序,为什么作者要写这个程序请参见:

http://pyropus.ca/software/getmail/faq.html#faq-about-why

1,建Mail目录

建一个~/Mail目录,然后:

  1. $ mkdir -m 700 ~/Mail/inbox/{,tmp,new,cur}

复制代码

2,配置getmail

建~/.getmail,在此目录下编辑getmailrc.gmail:

  1. [retriever]
  2. type = SimplePOP3SSLRetriever
  3. server = pop.gmail.com
  4. port = 995
  5. username = mail_add@gmail.com
  6. password = 1234567
  7. [destination]
  8. type = Maildir
  9. path = ~/Mail/inbox/
  10. [options]
  11. verbose = 0
  12. delete = true
  13. message_log = ~/.getmail/getmail.log

复制代码

3,配置~/.msmtprc

内容:

  1. account default
  2. tls on
  3. host smtp.gmail.com
  4. from mail_add@gmail.com
  5. user mail_add@gmail.com
  6. auth on
  7. port 587
  8. password 1234567

复制代码

3,在~/.muttrc中加入:

  1. set folder=~/Mail
  2. mailboxes +inbox
  3. set sendmail="/usr/bin/msmtp"

复制代码
原来的其他内容如果不和上面冲突就不用改变。

4,用cron或者其他你喜欢的类似程序指定运行getmail检查gmail的频率, getmail执行方式为:

  1. $ getmail -r ~/.getmail/getmailrc.gmail

复制代码

5,运行mutt查看信件

  1. $ mutt -y

复制代码
[ 本帖最后由 l4kernel 于 2006-6-28 21:40 编辑 ]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文