From: dave%intrec.com <> Date: Wed, 4 Apr 2001 03:54:53 +0000 (+0000) Subject: Fix for bug 74529: backward email filtering fixed. patch by jake@acutex.net X-Git-Tag: bugzilla-2.12~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85b4426751bc2ff825815a66ec71fc0ce4cc4083;p=thirdparty%2Fbugzilla.git Fix for bug 74529: backward email filtering fixed. patch by jake@acutex.net --- diff --git a/processmail b/processmail index 88c633140d..c34b45b154 100755 --- a/processmail +++ b/processmail @@ -684,7 +684,7 @@ sub getEmailAttributes ($@) { if ( $commentField =~ /Created an attachment \(/ ) { push (@flags, 'Attachments'); } - elsif ( ($commentField ne '') && (scalar(@flags) == 1) && ($flags[0] eq 'Resolved')) { + elsif ( ($commentField ne '') && !(scalar(@flags) == 1 && $flags[0] eq 'Resolved')) { push (@flags, 'Comments'); }