Mutt:muttでHTMLをレンダリングする[閉じる]

Mutt:muttでHTMLをレンダリングする[閉じる]

muttでhtmlをレンダリングしたいのですが、まだ正常に設定できませんでした。

w3mを使いたいから.mailcap良い:

text/html; "$BROWSER" %s &; test=test -n "$DISPLAY"; needsterminal;
text/html; w3m -I %{charset} -T text/hmtl; copiousoutput;

muttでレンダリングするために、以下を追加しました。

auto_view text/html
alternative_order text/plain text/enriched text/html

広げるとこんな感じです。テキスト/html文書(押してvreturnへ)に移動します。テキスト/html)

[-- Autoview using w3m -I 'utf-8' -T text/hmtl --]
<html><head></head><body><!-- content: html tiny_mce -->
<p>Bonjour a tous,</p>
<p>Une page Didel pour le cours Analyse et Probabilites a ete cree.</p>
<p>Tous les etudiants qui suivent ce cours sont invites a y s'insrcire.</p>
<p>Les DMs vont etre mises en ligne sur ce site.</p>
<p>Cordialement,</p>
<p>Adina Ralea</p>

<div class="lnk_link_panel">
</div>
<br /><br />-- <br />Adina Giorgianna Ralea<br />Gestionnaire du cours L3
+Mathématiques-Informatique 2015-2016 (L3MI2014)<br /><br /><a
+href="http://didel.script.univ-paris-diderot.fr/">Diderot en ligne</a><br
+/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Administrateur: <a
+href="mailto:[email protected]">Admin</a><br
+/></body></html>

autoviewがw3mを使用しているのがわかりますが、なぜレンダリングされないのですか?

答え1

-T渡した値にw3m誤字があります。text/html次に交換する必要がありますtext/hmtl

text/html; w3m -I %{charset} -T text/html; copiousoutput;

関連情報