You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by mm...@apache.org on 2010/12/15 16:50:50 UTC

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

Author: mmartinec
Date: Wed Dec 15 15:50:50 2010
New Revision: 1049606

URL: http://svn.apache.org/viewvc?rev=1049606&view=rev
Log:
Conf.pm: document tflags interpreted by the URIDNSBL plugin

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

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm?rev=1049606&r1=1049605&r2=1049606&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm Wed Dec 15 15:50:50 2010
@@ -2867,13 +2867,12 @@ B<Mail::SpamAssassin::Plugin::Reuse>.
     }
   });
 
-=item tflags SYMBOLIC_TEST_NAME [ {net|nice|learn|userconf|noautolearn|multiple} ]
+=item tflags SYMBOLIC_TEST_NAME [ {net|nice|learn|userconf|noautolearn|multiple|ips_only|domains_only|a|ns} ]
 
-Used to set flags on a test.  These flags are used in the
-score-determination back end system for details of the test's
-behaviour.  Please see C<bayes_auto_learn> for more information
-about tflag interaction with those systems. The following flags
-can be set:
+Used to set flags on a test. Parameter is a space-separated list of flag names.
+These flags are used in the score-determination back end system for details
+of the test's behaviour.  Please see C<bayes_auto_learn> for more information
+about tflag interaction with those systems. The following flags can be set:
 
 =over 4
 
@@ -2889,23 +2888,43 @@ assigned a negative score.
 
 =item  userconf
 
-The test requires user configuration before it can be used (like language-
-specific tests).
+The test requires user configuration before it can be used (like
+language-specific tests).
 
 =item  learn
 
 The test requires training before it can be used.
 
-=item noautolearn
+=item  noautolearn
 
 The test will explicitly be ignored when calculating the score for
 learning systems.
 
-=item multiple
+=item  multiple
 
 The test will be evaluated multiple times, for use with meta rules.
 Only affects header, body, rawbody, uri, and full tests.
 
+=item  ips_only
+
+This flag is specific to rules invoking an URIDNSBL plugin,
+it is documented there.
+
+=item  domains_only
+
+This flag is specific to rules invoking an URIDNSBL plugin,
+it is documented there.
+
+=item  ns
+
+This flag is specific to rules invoking an URIDNSBL plugin,
+it is documented there.
+
+=item  a
+
+This flag is specific to rules invoking an URIDNSBL plugin,
+it is documented there.
+
 =back
 
 =cut