diff options
author | dave%intrec.com <> | 2001-04-04 05:54:53 +0200 |
---|---|---|
committer | dave%intrec.com <> | 2001-04-04 05:54:53 +0200 |
commit | 85b4426751bc2ff825815a66ec71fc0ce4cc4083 (patch) | |
tree | 93c711d09d3a9c578d2ab7646581aac27d87da4b /processmail | |
parent | 215ac63dc9049b6441e2caa0a2d80dd6fe8106bf (diff) | |
download | bugzilla-85b4426751bc2ff825815a66ec71fc0ce4cc4083.tar.gz bugzilla-85b4426751bc2ff825815a66ec71fc0ce4cc4083.tar.xz |
Fix for bug 74529: backward email filtering fixed. patch by jake@acutex.net
Diffstat (limited to 'processmail')
-rwxr-xr-x | processmail | 2 |
1 files changed, 1 insertions, 1 deletions
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'); } |