diff options
-rwxr-xr-x | processmail | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/processmail b/processmail index 3ddf28d94..a4c7bdc5e 100755 --- a/processmail +++ b/processmail @@ -414,10 +414,8 @@ sub getEmailAttributes ($@) { # the STATUS will be flagged for Severity, Status and # Priority changes # - if ( $fieldName eq 'Status') { - if ($new eq 'RESOLVED' || $new eq 'VERIFIED') { - push (@flags, 'Resolved'); - } + if ( $fieldName eq 'Status' && ($new eq 'RESOLVED' || $new eq 'VERIFIED')) { + push (@flags, 'Resolved'); } elsif ( $fieldName eq 'Severity' || $fieldName eq 'Status' || $fieldName eq 'Priority' ) { |