X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fspost.c;h=c86ea18c65dfd69234691d57c260759990af94b7;hp=5a7d9435a51194c156415eb2c54990cf61901483;hb=fb49dd82ec42997b9df97f221c920f6596102c0a;hpb=2d2b2581db2998febf460eb43e6e993e516a7da9 diff --git a/uip/spost.c b/uip/spost.c index 5a7d943..c86ea18 100644 --- a/uip/spost.c +++ b/uip/spost.c @@ -19,8 +19,7 @@ #include #include #include - -#define uptolow(c) ((isalpha(c) && isupper (c)) ? tolower (c) : c) +#include #define MAX_SM_FIELD 1476 /* < largest hdr field sendmail will accept */ #define FCCS 10 /* max number of fccs allowed */ @@ -762,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");