From: Don Armstrong Date: Tue, 12 Feb 2008 20:35:23 +0000 (-0800) Subject: complain about bounces without using quit() X-Git-Tag: release/2.6.0~504^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d2a9c959140788c2be1a0f817941bcc6428226f8;p=debbugs.git complain about bounces without using quit() --- diff --git a/scripts/process.in b/scripts/process.in index 7c3a6f6e..38a7a32c 100755 --- a/scripts/process.in +++ b/scripts/process.in @@ -262,8 +262,9 @@ if ($codeletter eq 'D' || $codeletter eq 'F') { if ($replyto =~ m/$gBounceFroms/o || $header{'from'} =~ m/$gBounceFroms/o) - { - &quit("bounce detected ! Mwaap! Mwaap!"); + { + print STDERR "bounce detected ! Mwaap! Mwaap!"; + exit 1; } my $markedby= $header{'from'} eq $replyto ? $replyto : "$header{'from'} (reply to $replyto)";