From de07fb5650a6b719cd229e97f194a4ecc6d13490 Mon Sep 17 00:00:00 2001 From: cjwatson <> Date: Thu, 27 Mar 2003 19:37:21 -0800 Subject: [PATCH] [project @ 2003-03-27 19:37:21 by cjwatson] Don't send "Info received" acks for Precedence: bulk|junk|list mail, to prevent mail loops. (Maybe we should ignore such mail altogether, as it's probably just an ack from another bug tracking system? Not sure, but this approach is safe for now.) --- scripts/process.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/process.in b/scripts/process.in index c5c86148..4c0140cb 100755 --- a/scripts/process.in +++ b/scripts/process.in @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: process.in,v 1.60 2003/03/25 20:13:11 cjwatson Exp $ +# $Id: process.in,v 1.61 2003/03/27 19:37:21 cjwatson Exp $ # # Usage: process nn # Temps: incoming/Pnn @@ -762,7 +762,8 @@ $brokenness $gMaintainer (administrator, $gProject $gBugs database) END -} elsif ($codeletter ne 'U') { +} elsif ($codeletter ne 'U' and + $header{'precedence'} !~ /\b(?:bulk|junk|list)\b/) { &htmllog("Acknowledgement","sent",$replyto, ($veryquiet ? "Extra info received and filed, but not forwarded." : $codeletter eq 'M' ? "Extra info received and forwarded to maintainer." : -- 2.39.5