1 This patch blacklist text/html from the list of documents that will be
2 shown automatically, the patch (the muttlib.c part) has been written by
3 Loïc Minier <lool@dooz.org>, I've added the documentation bit.
5 The patch has been forwarded upstream originally by Loïc on:
6 http://bugs.mutt.org/3496.
8 The original Debian bug for this problem is http://bugs.debian.org/611410
13 ** ``\fCcopiousoutput\fP'' flag set for \fIevery\fP MIME attachment it doesn't have
14 ** an internal viewer defined for. If such an entry is found, mutt will
15 ** use the viewer defined in that entry to convert the body part to text
17 + ** form. MIME attachments with 'text' types, with the only exception
18 + ** of text/html, are excluded: they will be shown as they are unless auto_view
21 { "include", DT_QUAD, R_NONE, OPT_INCLUDE, M_ASKYES },
29 + /* we don't want to display text/html */
30 + if (!ascii_strcasecmp ("html", m->subtype))
32 /* we can display any text, overridable by auto_view */