[ Antonio Radici ]
* debian/patches:
+ + features/ifdef: fixed a typo (Closes: 539974)
+ + debian-specific/Muttrc: correctly state that exim4 does not strip Bcc:
+ headers (Closes: 474194)
+ upstream/538128-mh-folder-access.patch: MH dirs are now correctly
parsed (Closes: 538128)
+ upstream/537818-emptycharset.patch: handling empty charsets without
segfaulting (Closes: 537818)
+ upstream/535096-pop-port.patch: allow a user to specify a port for a pop
connection, as it was before 1.5.20 (Closes: 535096)
- + debian-specific/Muttrc: correctly state that exim4 does not strip Bcc:
- headers (Closes: 474194)
+ upstream/542910-search-segfault.patch: fixes a bug in search which caused
a segfault (Closes: 542910)
+ upstream/533370-pgp-inline.patch: inline pgp messages now displayed
correctly even if pgp_auto_decode is set (Closes: 533370)
- + features/ifdef: fixed a typo (Closes: 539974)
+ + upstream/533520-signature-highlight.patch: fixed a problem in signature
+ hightlighting if text_flowed was set to 'yes' (Closes: 533520)
* debian/control:
+ Standards-Version bumped to 3.8.3
* debian/extra/lib/mailto-mutt: patch from madduck@ to correctly handle the
upstream/538128-mh-folder-access.patch
upstream/537818-emptycharset.patch
upstream/535096-pop-port.patch
+upstream/542910-search-segfault.patch
+upstream/533370-pgp-inline.patch
+upstream/533520-signature-highlight.patch
misc/hyphen-as-minus.patch
#misc/manpage-typos.patch
misc/smime_keys-manpage.patch
--- /dev/null
+before this patch mutt failed to highlight some signatures if text_flowed was
+set to yes (see upstream http://bugs.mutt.org/3275)
+
+--- a/handler.c
++++ b/handler.c
+@@ -1500,7 +1500,7 @@
+ l = mutt_strlen (buf);
+ if (l > 0 && buf[l-1] == '\n')
+ buf[--l] = 0;
+- if (option (OPTTEXTFLOWED))
++ if (mutt_strcmp (buf, "-- ") != 0 && option (OPTTEXTFLOWED))
+ {
+ while (l > 0 && buf[l-1] == ' ')
+ buf[--l] = 0;