3

如何在 Wanderlust 中查看替代 mime 内容?

我所有的邮件都是以 HTML 版本发送的,有时我宁愿看到纯文本版本,即使我不想完全失去查看 HTML 版本的能力。

4

1 回答 1

1

我有(在 ~/.wl 中)

(setq mime-view-type-subtype-score-alist
  '(((text . plain) . 4)
    ((text . enriched) . 3)
    ((text . html) . 2)
    ((text . richtext) . 1)))

设置默认优先级(我更喜欢纯文本,但如果您大部分时间想要html,只需更改值)。

然后,当我想查看替代版本时,我会显示所有消息部分(在摘要缓冲区中)

C-c m runs the command wl-summary-toggle-mime-buttons

显示为[1 <text/plain; UTF-8 (7bit)>][2 <text/html; UTF-8 (quoted-printable)>]

跳转到消息缓冲区,并将光标放在相应的按钮上,

C-c C-t C-c runs the command mime-preview-toggle-content

切换该特定部分的显示。

于 2012-09-02T09:57:51.820 回答