+ features/ifdef: fixed a typo (Closes: 539974)
+ debian-specific/Muttrc: correctly state that exim4 does not strip Bcc:
headers (Closes: 474194)
+ + upstream/393926-internal-viewer.patch: display any text/* part with the
+ internal viewer (Closes: 393926)
+ upstream/538128-mh-folder-access.patch: MH dirs are now correctly
parsed (Closes: 538128)
+ upstream/537818-emptycharset.patch: handling empty charsets without
upstream/542910-search-segfault.patch
upstream/533370-pgp-inline.patch
upstream/533520-signature-highlight.patch
+upstream/393926-internal-viewer.patch
misc/hyphen-as-minus.patch
#misc/manpage-typos.patch
misc/smime_keys-manpage.patch
--- /dev/null
+Display any text/* part with the internal viewer, see upstream bug
+http://bugs.mutt.org/3246
+
+--- a/muttlib.c
++++ b/muttlib.c
+@@ -622,11 +622,8 @@
+ switch (m->type)
+ {
+ case TYPETEXT:
+-
+- if (!ascii_strcasecmp ("plain", m->subtype) ||
+- !ascii_strcasecmp ("rfc822-headers", m->subtype) ||
+- !ascii_strcasecmp ("enriched", m->subtype))
+- return 0;
++ /* we can display any text, overridable by auto_view */
++ return 0;
+ break;
+
+ case TYPEAPPLICATION: