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 2012/05/15 19:22:06 UTC

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

Author: mmartinec
Date: Tue May 15 17:22:06 2012
New Revision: 1338801

URL: http://svn.apache.org/viewvc?rev=1338801&view=rev
Log:
Bug 6770: initial dns test eventually creates incorrect disabling of certain plugins - change a default for dns_available from "test" to "yes"

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=1338801&r1=1338800&r2=1338801&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm Tue May 15 17:22:06 2012
@@ -1434,7 +1434,7 @@ which controls the URIDNSBL plugin (docu
     type => $CONF_TYPE_BOOL,
   });
 
-=item dns_available { yes | no | test[: domain1 domain2...] }   (default: test)
+=item dns_available { yes | no | test[: domain1 domain2...] }   (default: yes)
 
 Tells SpamAssassin whether DNS resolving is available or not. A value I<yes>
 indicates DNS resolving is available, a value I<no> indicates DNS resolving
@@ -1458,11 +1458,14 @@ DNS-dependent tests.
 Please note, the DNS test queries for NS records, so specify domain names,
 not host names.
 
+Since version 3.4.0 of SpamAssassin a default setting for option
+I<dns_available> is I<yes>. A default in older versions was I<test>.
+
 =cut
 
   push (@cmds, {
     setting => 'dns_available',
-    default => 'test',
+    default => 'yes',
     type => $CONF_TYPE_STRING,
     code => sub {
       my ($self, $key, $value, $line) = @_;