On Tue, Dec 18, Michael Elkins wrote: > Note that right now I am focusing just on bugfixes, not feature patches, so > that a new release can be created soon.
What about this issue, is it solved by some other change already? Is it a code bug or a configuration bug? http://dev.mutt.org/trac/ticket/3496 Olaf # HG changeset patch # Parent eb1dd7b3063563322fe72745fd1d3b75616d0db0 https://bugs.launchpad.net/mutt/+bug/693244 diff -r eb1dd7b30635 muttlib.c --- a/muttlib.c +++ b/muttlib.c @@ -658,6 +658,8 @@ int mutt_needs_mailcap (BODY *m) switch (m->type) { case TYPETEXT: + if (!ascii_strcasecmp ("html", m->subtype)) + return 1; /* we can display any text, overridable by auto_view */ return 0; break;