网易163免费邮箱相关server信息:

mutt 是命令行下的邮件client,它仅是管理邮件的组织编辑,邮件的发送和接收须要调用相应的程序。

这里用的各自是getmail 和 msmtp.

过程例如以下

=====

1. 安装mutt, getmail, msmtp

======================

$ sudo yum -y install mutt getmail msmtp

2. Build Mail Dir

==================

  Create ~/Mail directory:

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

3. Configure getmail

=====================

  Reference:

  $ mkdir ~/.getmail

  $ cd ~/.getmail

  $ vi getmailrc.163





  [retriever]

  type = SimplePOP3SSLRetriever

  server = pop.163.com

  port = 995

  username = username

  password = password





  [destination]

  type = Maildir

  path = ~/Mail/inbox/





  [options]

  verbose = 0

  # don't delete messages on server.

  delete = false

  # don't retrieve all available message.

  read_all = false

  message_log = ~/.getmail/getmail.log

4. Config ~/.msmtprc

=====================





  $ touch ~/.msmtprc

  $ chmod 600 ~/.msmtprc

$ vi ~/.msmtprc

account 163

tls on

tls_certcheck off

tls_starttls off

auth on

host smtp.163.com

user username

from username@163.com

password password

port 465

5. add the following lines to ~/.muttrc

========================================





  set folder=~/Mail

  mailboxes +inbox

  mailboxes +linux

  set sendmail="/usr/bin/msmtp"

  # the mail_address name displayed on the mail list.

  set from="mail_address"

  set pager_stop=yes

  set beep=no

  set signature="~/.signature"

  set copy

  set edit_headers

  set fast_reply

  set help

  set include=yes

  bind index \cr search-opposite

  bind index \cs search-next

  bind pager \cr search-opposite

  bind pager \cs search-next

  bind pager \er read-thread

  bind index \er read-thread

  macro index G "!getmail -r ~/.getmail/getmailrc.163\n" "Invoke getmail"

  # append address to Cc.

  my_hdr Cc: address

6. getmail

===========





  Use cron or other programs to run getmail to check out mail.





  getmail command

  $ getmail -r ~/.getmail/getmailrc.163





  fetch the mail every two minutes.

  $ crontab -e

  */2 * * * * getmail -r ~/.getmail/getmailrc.163





  mailbox can't be processed in one config file. But mulitple config

  file can be processed.

7. run mutt

============

  $ mutt -y

5分钟教你配置命令行界面的163邮箱client的更多相关文章

  1. java实现邮箱发送信息--验证码的发送(163邮箱)

    1.maven环境 <!-- 发送邮件 --> <dependency> <groupId>javax.mail</groupId> <artif ...

  2. 【python】10分钟教你用python打造贪吃蛇超详细教程

    10分钟教你用python打造贪吃蛇超详细教程 在家闲着没妹子约, 刚好最近又学了一下python,听说pygame挺好玩的.今天就在家研究一下, 弄了个贪吃蛇出来.希望大家喜欢. 先看程序效果: 0 ...

  3. 10分钟教你用Python打造微信天气预报机器人

    01 前言 最近武汉的天气越来越恶劣了.动不动就下雨,所以,拥有一款好的天气预报工具,对于我们大学生来说,还真是挺重要的了.好了,自己动手,丰衣足食,我们来用Python打造一个天气预报的微信机器人吧 ...

  4. 【python】10分钟教你用python下载和拼接微信好友头像图片

    前言 相信微信大家是用得再多也不过了.那么,对于python+微信,又能玩出什么新的花样呢?下面小编就给大家带来一个好玩的东西.用python下载所有的微信好友的头像,然后拼接成一张大图.这样,大家就 ...

  5. 2018-10-8-3分钟教你搭建-gitea-在-Centos-服务器

    title author date CreateTime categories 3分钟教你搭建 gitea 在 Centos 服务器 lindexi 2018-10-08 09:54:39 +0800 ...

  6. 5 分钟教你快速掌握 GitHub Actions 自动部署博客

    自从 GitHub 宣布 GitHub Actions 在平台上对所有开发人员和存储库可用以来,GitHub Actions 越来越受欢迎.很多第三方平台在生态系统中有速度等限制,将进一步推动开发人员 ...

  7. 轻松三步教你配置Oracle—windows环境

    最近笔者在学习Oracle的时候,虽然度过了大家所说的安装难题,但是又遇到了一系列的问题,经过多方求教才知道原来是自己仅仅是安装了Oracle,却没有在环境变量中进行相应的配置.笔者也像大家遇到问题时 ...

  8. [转]Redmine 配置163邮箱

    redmine的邮件发送功能还是很有用的.像项目有更新啦,任务分配啦,都能邮件发送的相关责任人.我自己在linux服务器上安装并启动了redmine后,邮件一直发送了不了.查了网上的资料,都是讲修改下 ...

  9. 10分钟 教你学会Linux/Unix下的vi文本编辑器

    10分钟 教你学会Linux/Unix下的vi文本编辑器 vi编辑器是Unix/Linux系统管理员必须学会使用的编辑器.看了不少关于vi的资料,终于得到这个总结.不敢独享,和你们共享. 首先,记住v ...

随机推荐

  1. 我弄的一些TASKER配置

    http://tieba.baidu.com/p/2184969007 我弄的一些配置,需要的童鞋们找自己想要的吧,有些配置感觉还是很繁琐,请高手不吝赐教才好,图片太多,就发链接了. ◆保持屏幕开启, ...

  2. 设计模式 - 命令模式(command pattern) 撤销(undo) 具体解释

    命令模式(command pattern) 撤销(undo) 详细解释 本文地址: http://blog.csdn.net/caroline_wendy 參考命令模式: http://blog.cs ...

  3. windows系统上安装与使用Android NDK r8d(二)

    四.    在eclipse中集成c/c++开发环境    1. 装Eclipse的C/C++环境插件:CDT,这里选择在线安装.          首先登录http://www.eclipse.or ...

  4. Qt Creator的下载、安装及试用

    1.试用环境及版本介绍:本文介绍的是windows桌面平台下使用Qt4.7.2和Qt Creator2.1.0,其他操作系统和版本在阅读时请留意. 2.下载: 从http://get.qt.nokia ...

  5. QMsgPack简介

    QMsgPack简介 首先,关于MessagePack协议,访问http://msgpack.org可以了解详细的格式约定及各种语言的实现. MessagePack协议号称比JSON快,但速度的快慢这 ...

  6. Java:泛型在编译时会被檫除,Eclipse 如何给出智能提示?

    背景 Java 的泛型是一种语法糖,编译时会被“檫除”,参考文章:http://docs.oracle.com/javase/tutorial/java/generics/,如果没有源代码,Eclip ...

  7. MERGE新特性(UPDATE WHERE,DELETE WHERE,INSERT WHERE)

    MERGE语句是Oracle9i新增的语法,用来合并UPDATE和INSERT语句.通过MERGE语句,根据一张表或子查询的连接条件对另外一张表进行查询,连接条件匹配上的进行UPDATE,无法匹配的执 ...

  8. vim配置总结

    本博文转自:http://www.cppblog.com/runsisi/archive/2013/04/06/199152.html? opt=admin 12年的最后一天配置了一下公司RHEL上的 ...

  9. 测试markdown 博客功能

    欢迎使用 Cmd - 在线 Markdown 编辑阅读器 我们理解您需要更便捷更高效的工具记录思想,整理笔记.知识,并将其中承载的价值传播给他人,Cmd Markdown 是我们给出的答案 -- 我们 ...

  10. CentOS7下命令安装火狐浏览器

    使用命令安装火狐浏览器,需要切换root(su root)下,执行下面的命令,自动下载所需依赖包,完成安装 yum -y install firefox 然后重启即可