2012-06-12 16 views
3

如何在漫遊中查看備用MIME內容?如何在漫遊中查看備用MIME內容

我的所有郵件都以HTML版本的形式出現,有時我寧願看到純文本版本,即使我不想失去完全查看HTML版本的能力。

+0

不,流浪是一個emacs的郵件客戶端 –

+0

http://superuser.com/questions/435668/how-to-view-alternate-mime-content-in-wanderlust –

回答

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 

它切換顯示該特定部分。