|
我先说说,并问一个问题。
1.热键绑定fetchmail,
在~.muttrc加入
- #key binding fetchmail
- macro index G "!fetchmail -v\n" "Invoke fetchmail"
- macro pager G "!fetchmail -v\n" "Invoke fetchmail"
复制代码
以后就可以打开mutt后随时按ctrl+g接收新邮件,不需要把fetchmail作为常驻进程或先运行fetchmail收邮件再开mutt了。
2.热键绑定进入inbox,:ask mutt需要按c选择邮箱,不知道有没有方法绑定热键快速进入inbox,知道的请告知:)
3.在firefox新建标签中打开html附件,而且查看附件时不会锁住mutt。
定义mailcap,关联mailcap文件,在muttrc中加入
- # ext app to view attachment
- set mailcap_path="~/.mutt/mailcap"
复制代码
创建~/.mutt/mailcap,加入
- text/html; firefox %s; firefox -a firefox -remote 'openURL(file://%s, new-tab)'; copiousoutput
复制代码
相类似还可以定义很多mailcap,例如用oOo打开word文档:
- application/msword; ooffice -writer %s; copiousoutput
复制代码 |
|