From: Antonio Radici Date: Thu, 10 Sep 2009 22:54:32 +0000 (+0100) Subject: upstream/393926-internal-viewer.patch: display any text/* part with the internal... X-Git-Tag: debian/1.5.20-3~10 X-Git-Url: https://git.llucax.com/software/mutt-debian.git/commitdiff_plain/b1eb6e1b6009874e848940b9263ce223c3905c35?hp=aaf90aa762383ca20a486092ad36eef6f482210b upstream/393926-internal-viewer.patch: display any text/* part with the internal viewer (Closes: 393926) --- diff --git a/debian/changelog b/debian/changelog index 36aed2c..d00b820 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ mutt (1.5.20-3) UNRELEASED; urgency=low + 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 diff --git a/debian/patches/series b/debian/patches/series index bcbefad..6f73848 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -42,6 +42,7 @@ upstream/535096-pop-port.patch 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 diff --git a/debian/patches/upstream/393926-internal-viewer.patch b/debian/patches/upstream/393926-internal-viewer.patch new file mode 100644 index 0000000..70c4575 --- /dev/null +++ b/debian/patches/upstream/393926-internal-viewer.patch @@ -0,0 +1,19 @@ +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: