summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authordave%intrec.com <>2001-04-04 05:54:53 +0200
committerdave%intrec.com <>2001-04-04 05:54:53 +0200
commit85b4426751bc2ff825815a66ec71fc0ce4cc4083 (patch)
tree93c711d09d3a9c578d2ab7646581aac27d87da4b /processmail
parent215ac63dc9049b6441e2caa0a2d80dd6fe8106bf (diff)
downloadbugzilla-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-xprocessmail2
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');
}