Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: [zeke] email format in bounced messages

Quote Reply
Re: [zeke] email format in bounced messages In reply to
This was fixed in 2.2.1. If you don't want to upgrade, then all you need to do is change outgoing.pl around line 143:
Code:
$opts{envelope_to} = $head->get('X-GMail-To') || $head->get('X-Envelope-To') || $head->get('Delivered-To') || $head->get('To');
to:
Code:
$opts{envelope_to} = $head->get('X-GMail-To') || $head->get('X-Envelope-To') || $head->get('Delivered-To') || $head->get('To');
$opts{envelope_to} =~ /\@(.*)/;
$opts{envelope_to} =~ s/^\Q$1\E\-//i;
[edit]Sorry, diff'ed the wrong version[/edit]

Adrian

Last edited by:

brewt: Feb 14, 2004, 2:42 AM
Subject Author Views Date
Thread email format in bounced messages zeke 5057 Feb 12, 2004, 2:31 PM
Thread Re: [zeke] email format in bounced messages
brewt 4912 Feb 12, 2004, 6:03 PM
Post Re: [brewt] email format in bounced messages
zeke 4892 Feb 13, 2004, 11:07 PM
Thread Re: [brewt] email format in bounced messages
anup123 4891 Feb 14, 2004, 1:39 AM
Thread Re: [anup123] email format in bounced messages
brewt 4897 Feb 14, 2004, 2:43 AM
Post Re: [brewt] email format in bounced messages
anup123 4886 Feb 14, 2004, 6:16 AM