Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: [anup123] Bounces And AR

Quote Reply
Re: [anup123] Bounces And AR In reply to
Hi Anup,

I've fixed this up in 2.2.0, so it will be fixed in the final 2.2.0 release. You can fix this up in the meantime by adding this code to batch/incoming.pl, right below the comment:
Code:
# Detection of loops

(It's near the bottom - about 85-90% through the file, inside 'sub autoreply')

Add:

Code:
my $retpath = $mail->top_part->get('Return-Path');
if ($retpath and $retpath =~ /<\s*>/) {
GMail->debug('Bounce detected. Not sending autoreply.') if $CFG->{debug};
return 1;
}

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Subject Author Views Date
Thread Bounces And AR anup123 4213 Oct 5, 2003, 8:36 AM
Thread Re: [anup123] Bounces And AR
anup123 4125 Oct 5, 2003, 11:37 AM
Post Re: [anup123] Bounces And AR
anup123 4094 Oct 8, 2003, 4:25 AM
Thread Re: [anup123] Bounces And AR
anup123 4091 Oct 9, 2003, 1:52 AM
Thread Re: [anup123] Bounces And AR
Jagerman 4093 Oct 9, 2003, 12:31 PM
Post Re: [Jagerman] Bounces And AR
anup123 4067 Oct 9, 2003, 3:09 PM