]> git.llucax.com Git - software/mutt-debian.git/commitdiff
display bcc for postponed message if there is no To (Closes: 350957)
authorAntonio Radici <antonio@dyne.org>
Wed, 27 May 2009 22:46:48 +0000 (23:46 +0100)
committerAntonio Radici <antonio@dyne.org>
Wed, 27 May 2009 22:46:48 +0000 (23:46 +0100)
debian/changelog
debian/patches/series
debian/patches/upstream/350957-postponed-to-bcc.patch [new file with mode: 0644]

index 21536b9512a9f5d77a12aa064d7874fb359cda17..8ac83c20bed8afda80902a5022ce3656e29bc29e 100644 (file)
@@ -22,6 +22,8 @@ mutt (1.5.19-4) unstable; urgency=low
     + 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
 
index 555f2ac626c9380bd2ea322897c5e92cf7fd12ab..c758e72e0f8bae01b155ef39021962faf79d6528 100644 (file)
@@ -34,6 +34,7 @@ upstream/375530-index-weirdness.patch
 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
diff --git a/debian/patches/upstream/350957-postponed-to-bcc.patch b/debian/patches/upstream/350957-postponed-to-bcc.patch
new file mode 100644 (file)
index 0000000..8cf8be6
--- /dev/null
@@ -0,0 +1,15 @@
+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