Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: [pcmike] Bounce Emails

Quote Reply
Re: [pcmike] Bounce Emails In reply to
This code has been improved in 3.0, but in gmail 2.x, you'll have to edit batch/outgoing.pl. Around line 192, you'll see:
Code:
$opts{envelope_to} = $head->get('X-GMail-To') || $head->get('X-Envelope-To') || $head->get('Delivered-To') || $head->get('To');
Depending on how your mail server sets things up, you'll probably need to change it to:
Code:
$opts{envelope_to} = $head->get('X-GMail-To') || $head->get('To');

Adrian
Subject Author Views Date
Thread Bounce Emails pcmike 3325 Feb 1, 2006, 4:37 PM
Thread Re: [pcmike] Bounce Emails
brewt 3270 Feb 1, 2006, 5:29 PM
Post Re: [brewt] Bounce Emails
HyperTherm 3243 Feb 2, 2006, 2:44 AM
Post Re: [pcmike] Bounce Emails
pcmike 3243 Feb 1, 2006, 6:09 PM