]> git.marmaro.de Git - mmh/commitdiff
Fixed make_bcc_file () to use contents of From: in draft, if draft_from masquerade...
authorDavid Levine <levinedl@acm.org>
Wed, 18 Jan 2006 00:09:00 +0000 (00:09 +0000)
committerDavid Levine <levinedl@acm.org>
Wed, 18 Jan 2006 00:09:00 +0000 (00:09 +0000)
ChangeLog
uip/post.c
uip/spost.c

index cc54aebf4e87813d220cd882d6436c5bf0905e78..e7f3e1c8265e1b261c0059c6992c8a5d28769d2f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2006-01-17  David Levine <levinedl@acm.org>
+
+       * uip/post.c, uip/spost.c: in make_bcc_file (), use same
+       logic as in finish_headers () to detect whether there is an
+       existing From: line in the draft.  If draft_from masquerade
+       flag is enabled, this allows the From: to be obeyed in the
+       Bcc, instead of the old behavior of always replacing it with
+       the signature.
+
 2006-01-17  Oliver Kiddle  <okiddle@yahoo.co.uk>
 
        * sbr/fmt_scan.c: more robust multi-byte/column support for field
index 4ca59553556f52f7e9ebce1002267d1b506537a9..f880152a2b3182d1595247112133a41d6b292b1b 100644 (file)
@@ -1167,7 +1167,18 @@ make_bcc_file (int dashstuff)
     if (msgid)
        fprintf (out, "Message-ID: <%d.%ld@%s>\n",
                (int) getpid (), (long) tclock, LocalName ());
-    fprintf (out, "From: %s\n", signature);
+    if (msgflags & MFRM) {
+      /* There was already a From: in the draft.  Don't add one. */
+      if (!draft_from_masquerading)
+        /* mts.conf didn't contain "masquerade:[...]draft_from[...]"
+           so we'll reveal the user's actual account@thismachine
+           address in a Sender: header (and use it as the envelope
+           From: later). */
+        fprintf (out, "Sender: %s\n", from);
+    }
+    else
+      /* Construct a From: header. */
+      fprintf (out, "From: %s\n", signature);
     if (subject)
        fprintf (out, "Subject: %s", subject);
     fprintf (out, "BCC:\n");
index 7a880e972d4cbfefbf97bca95c888dd138cfa7d3..c86ea18c65dfd69234691d57c260759990af94b7 100644 (file)
@@ -761,7 +761,18 @@ make_bcc_file (void)
     chmod (bccfil, 0600);
 
     fprintf (out, "Date: %s\n", dtimenow (0));
-    fprintf (out, "From: %s\n", signature);
+    if (msgflags & MFRM) {
+      /* There was already a From: in the draft.  Don't add one. */
+      if (!draft_from_masquerading)
+        /* mts.conf didn't contain "masquerade:[...]draft_from[...]"
+           so we'll reveal the user's actual account@thismachine
+           address in a Sender: header (and use it as the envelope
+           From: later). */
+        fprintf (out, "Sender: %s\n", from);
+    }
+    else
+      /* Construct a From: header. */
+      fprintf (out, "From: %s\n", signature);
     if (subject)
        fprintf (out, "Subject: %s", subject);
     fprintf (out, "BCC:\n\n------- Blind-Carbon-Copy\n\n");