You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by qu...@apache.org on 2005/04/03 11:09:45 UTC

svn commit: r159903 - spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm

Author: quinlan
Date: Sun Apr  3 01:09:45 2005
New Revision: 159903

URL: http://svn.apache.org/viewcvs?view=rev&rev=159903
Log:
some documentation tweaks

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm?view=diff&r1=159902&r2=159903
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm Sun Apr  3 01:09:45 2005
@@ -2107,13 +2107,12 @@
     }
   });
 
-=item bayes_path /path/to/file	(default: ~/.spamassassin/bayes)
+=item bayes_path /path/filename	(default: ~/.spamassassin/bayes)
 
-Partial filename path (this is not a directory name) for Bayes probabilities
-databases.  Several databases will be created, with this as the base, with
-C<_toks>, C<_seen>, etc. appended to this filename.  The default setting
-results in files called C<~/.spamassassin/bayes_seen>,
-C<~/.spamassassin/bayes_toks>, etc.
+This is the directory and filename for Bayes databases.  Several databases
+will be created, with this as the base directory and filename, with C<_toks>,
+C<_seen>, etc. appended to the base.  The default setting results in files
+called C<~/.spamassassin/bayes_seen>, C<~/.spamassassin/bayes_toks>, etc.
 
 By default, each user has their own in their C<~/.spamassassin> directory with
 mode 0700/0600.  For system-wide SpamAssassin use, you may want to reduce disk
@@ -2131,8 +2130,6 @@
       unless (defined $value) {
 	return $MISSING_REQUIRED_VALUE;
       }
-      # not sure if we should test this here or in bayes, but bayes_path
-      # is used in a lot of places, so this is here
       if (-d $value) {
 	return $INVALID_VALUE;
       }
@@ -2385,7 +2382,7 @@
     type => $CONF_TYPE_STRING
   });
 
-=item loadplugin PluginModuleName [/path/to/module.pm]
+=item loadplugin PluginModuleName [/path/module.pm]
 
 Load a SpamAssassin plugin module.  The C<PluginModuleName> is the perl module
 name, used to create the plugin object itself.