diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2005-12-05 00:47:16 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2005-12-05 00:47:16 +0000 |
commit | c8d78958955dc56f6c297504b1242b12275acaaa (patch) | |
tree | c68b30c9738b9886db805f2c1de14d03645b3dda /mail/p5-Mail-SpamAssassin | |
parent | b4aa4dc6e9bcaa4f1bc050e52a128ec0e7c80eab (diff) |
Restore the -q[uiet] flag to 'sa-learn' that was lost in the 3.0.0 update.
Notes
Notes:
svn path=/head/; revision=150430
Diffstat (limited to 'mail/p5-Mail-SpamAssassin')
-rw-r--r-- | mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw b/mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw new file mode 100644 index 000000000000..0b2a3ae49ff5 --- /dev/null +++ b/mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw @@ -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 ) { |