Restore the -q[uiet] flag to 'sa-learn' that was lost in the 3.0.0 update.
This commit is contained in:
parent
b4aa4dc6e9
commit
c8d7895895
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=150430
1 changed files with 19 additions and 0 deletions
19
mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw
Normal file
19
mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw
Normal file
|
@ -0,0 +1,19 @@
|
|||
--- sa-learn.raw.org Tue Sep 13 19:07:32 2005
|
||||
+++ sa-learn.raw Sun Dec 4 16:43:52 2005
|
||||
@@ -109,6 +109,7 @@ GetOptions(
|
||||
'local|L' => \$opt{'local'},
|
||||
'no-sync|nosync' => \$opt{'nosync'},
|
||||
'showdots' => \$opt{'showdots'},
|
||||
+ 'quiet' => \$opt{'quiet'},
|
||||
'progress' => \$opt{'progress'},
|
||||
'use-ignores' => \$opt{'use-ignores'},
|
||||
'no-rebuild|norebuild' => sub { $opt{'nosync'} = 1; warn "The --no-rebuild option has been deprecated. Please use --no-sync instead.\n" },
|
||||
@@ -409,7 +410,7 @@ eval {
|
||||
$progress->final() if ($opt{progress} && $progress);
|
||||
|
||||
my $phrase = defined $forget ? "Forgot" : "Learned";
|
||||
- print "$phrase tokens from $learnedcount message(s) ($messagecount message(s) examined)\n";
|
||||
+ print "$phrase tokens from $learnedcount message(s) ($messagecount message(s) examined)\n" if (!$opt{quiet});
|
||||
|
||||
# If we needed to make a tempfile, go delete it.
|
||||
if ( defined $tempfile ) {
|
Loading…
Reference in a new issue