+ fixes some typos in the manpage (Closes: 428017)
* patches/upstream/524420-segfault-reconnect-sasl.patch
+ sasl, mutt segfaults on reconnect to IMAPS server (Closes: 524420)
+ * patches/upstream/350957-postponed-to-bcc.patch
+ + display bcc for postponed message if there is no To (Closes: 350957)
-- Antonio Radici <antonio@dyne.org> Tue, 26 May 2009 23:42:51 +0100
upstream/493719-segfault-imap-close.patch
upstream/514960-certificate-insecure-algorithm.patch
upstream/524420-segfault-reconnect-sasl.patch
+upstream/350957-postponed-to-bcc.patch
misc/hyphen-as-minus.patch
misc/manpage-typos.patch
--- /dev/null
+For %F, display Bcc recipient if no other recipients found.
+Closes http://bugs.mutt.org/3157
+See also http://bugs.debian.org/350957
+
+--- a/hdrline.c
++++ b/hdrline.c
+@@ -121,6 +121,8 @@
+ snprintf (buf, len, "To %s", mutt_get_name (hdr->to));
+ else if (me && hdr->cc)
+ snprintf (buf, len, "Cc %s", mutt_get_name (hdr->cc));
++ else if (me && hdr->bcc)
++ snprintf (buf, len, "Bcc %s", mutt_get_name (hdr->bcc));
+ else if (hdr->from)
+ strfcpy (buf, mutt_get_name (hdr->from), len);
+ else