You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by Apache Wiki <wi...@apache.org> on 2008/03/13 09:47:50 UTC

[Spamassassin Wiki] Update of "BayesFeedbackViaForwarding" by MattKettler

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Spamassassin Wiki" for change notification.

The following page has been changed by MattKettler:
http://wiki.apache.org/spamassassin/BayesFeedbackViaForwarding

The comment on the change is:
removed mis-use of the -C option.

------------------------------------------------------------------------------
  my $hamfile     = "/var/mail/not_spam";
  my $tmpdir      = "/var/tmp/split";
  
- #my $learn_spam = "sa-learn --spam -C /etc/mail/spamassassin --showdots --dir $tmpdir";
+ #my $learn_spam = "sa-learn --spam --showdots --dir $tmpdir";
- #my $learn_ham  = "sa-learn --ham -C /etc/mail/spamassassin --showdots --dir $tmpdir";
+ #my $learn_ham  = "sa-learn --ham --showdots --dir $tmpdir";
  
- my $learn_spam  = "sa-learn --spam -C /etc/mail/spamassassin --dir $tmpdir";
+ my $learn_spam  = "sa-learn --spam --dir $tmpdir";
- my $learn_ham   = "sa-learn --ham -C /etc/mail/spamassassin --dir $tmpdir";
+ my $learn_ham   = "sa-learn --ham --dir $tmpdir";
  
  my $startdir = cwd();