Dear Wiki user,
You have subscribed to a wiki page or wiki category on "Spamassassin Wiki" for change notification.
The "MassCheck" page has been changed by Darxus:
https://wiki.apache.org/spamassassin/MassCheck?action=diff&rev1=19&rev2=20
Comment:
echoing to user_prefs needs two >'s, otherwise it will overwrite instead of appending
cd masses
mkdir spamassassin
rm spamassassin/bayes*
- echo "use_bayes 1" > spamassassin/user_prefs
+ echo "use_bayes 1" >> spamassassin/user_prefs
}}}
or to turn it off:
@@ -45, +45 @@
{{{
cd masses
mkdir spamassassin
- echo "use_bayes 0" > spamassassin/user_prefs
+ echo "use_bayes 0" >> spamassassin/user_prefs
}}}
== Once mass-check completes ==
|