From 85b4426751bc2ff825815a66ec71fc0ce4cc4083 Mon Sep 17 00:00:00 2001 From: "dave%intrec.com" <> Date: Wed, 4 Apr 2001 03:54:53 +0000 Subject: Fix for bug 74529: backward email filtering fixed. patch by jake@acutex.net --- processmail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processmail b/processmail index 88c633140..c34b45b15 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'); } -- cgit v1.2.3-24-g4f1b