From 9baa20b6178dec82264945744200af013c05b3bd Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Tue, 27 Mar 2012 15:18:49 +0200 Subject: [PATCH] Make sure we don't send Envelope-From if we're using spost. Pulled in from nmh. Thanks to Ken Hornstein. --- uip/spost.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uip/spost.c b/uip/spost.c index 69d4708..93283cc 100644 --- a/uip/spost.c +++ b/uip/spost.c @@ -87,6 +87,7 @@ static struct headers NHeaders[] = { { "Bcc", HADR|HTRY|HBCC, MINV }, { "Message-Id", HBAD, 0 }, { "Fcc", HFCC, 0 }, + { "Envelope-From", HIGN, 0 }, { NULL, 0, 0 } }; @@ -103,6 +104,7 @@ static struct headers RHeaders[] = { { "Resent-Fcc", HFCC, 0 }, { "Reply-To", HADR, 0 }, { "Fcc", HIGN, 0 }, + { "Envelope-From", HIGN, 0 }, { NULL, 0, 0 } }; -- 1.7.10.4