Mutt
Mutt Outlook 郵件失真
我開始使用 Mutt,我遇到的唯一問題是,當我收到來自 Outlook 帳戶的電子郵件時,我會收到一堆標題和所有 HTML。很難閱讀。我想要做的是能夠正確閱讀這些內容,並且能夠以 HTML 格式發送我的電子郵件。我必須有什麼設置才能發生這種情況?
要查看 HTML 郵件
mutt
:將以下內容添加到您的
~/.muttrc
:# convert text/html to text/plain using the "copiousoutput" entry # for text/html from ~/.mailcap auto_view text/html # Optionally prefer text/plain to text/html # Doing this means that you will need to manually view text/html attachments # in messages that are multipart/alternative with both text/plain and # text/html attachments. alternative_order text/plain text/html
這兩行之一
~/.mailcap
:text/html; /usr/bin/links -html-numbered-links 1 -dump '%s'; copiousoutput; description=HTML Text; nametemplate=%s.html text/html; /usr/bin/lynx -dump -force_html '%s'; copiousoutput; description=HTML Text; nametemplate=%s.html
(您也可以使用
w3m
ortext2html
或其他程序將 HTML 轉換為純文字,但您必須閱讀手冊頁才能找到適當的命令行選項)
mutt
將使用 中指定的命令~/.mailcap
將 text/html 附件轉換為 text/plain 並在mutt
查看器中顯示。要從以下位置發送 HTML 郵件
mutt
:我不知道,因為我有自尊,從來不想犯這種可憎的事。