19 lines
1.1 KiB
Text
19 lines
1.1 KiB
Text
--- spamassassin.raw.orig Tue Jul 25 15:02:20 2006
|
|
+++ spamassassin.raw Wed Aug 23 09:03:48 2006
|
|
@@ -181,6 +181,7 @@ GetOptions(
|
|
'mbox' => sub { $opt{'format'} = 'mbox'; },
|
|
'mbx' => sub { $opt{'format'} = 'mbx'; },
|
|
'prefspath|prefs-file|p=s' => \$opt{'prefspath'},
|
|
+ 'quiet' => \$opt{'quiet'},
|
|
'remove-addr-from-whitelist=s' => \$opt{'remove-addr-from-whitelist'},
|
|
'remove-from-whitelist|R' => \$opt{'remove-from-whitelist'},
|
|
'remove-markup|despamassassinify|d' => \$opt{'remove-markup'},
|
|
@@ -351,7 +352,7 @@ if ( defined $tempfile ) {
|
|
# Let folks know how many messages were handled, as long as the handling
|
|
# didn't produce output (ala: check, test, or remove_markup ...)
|
|
if ( $opt{'report'} || $opt{'revoke'} || $doing_whitelist_operation ) {
|
|
- print "$count message(s) examined.\n";
|
|
+ print "$count message(s) examined.\n" unless $opt{'quiet'};
|
|
}
|
|
|
|
# if the eval died from something, report it here and return an error.
|