You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2005/12/14 01:23:56 UTC

svn commit: r356655 - /spamassassin/dns/named.conf

Author: felicity
Date: Tue Dec 13 16:23:53 2005
New Revision: 356655

URL: http://svn.apache.org/viewcvs?rev=356655&view=rev
Log:
specify who we notify and such

Modified:
    spamassassin/dns/named.conf

Modified: spamassassin/dns/named.conf
URL: http://svn.apache.org/viewcvs/spamassassin/dns/named.conf?rev=356655&r1=356654&r2=356655&view=diff
==============================================================================
--- spamassassin/dns/named.conf (original)
+++ spamassassin/dns/named.conf Tue Dec 13 16:23:53 2005
@@ -1,12 +1,3 @@
-// Slave servers
-acl slaves {
-	209.237.226.90;	// ns.hyperreal.org
-	65.214.43.13;	// ns1.kluge.net
-	130.215.36.126; // alum.wpi.edu
-	208.201.224.9;  // sonic.net
-	208.201.224.164;// sonic.net
-};
-
 options {
 	directory "/var/named";
 	query-source address * port 53;
@@ -35,6 +26,20 @@
 zone "spamassassin.org" {
 	type master;
 	file "spamassassin.org";
-	notify yes;
-	allow-transfer { slaves; };
+	notify explicit;
+	also-notify { 
+        	209.237.226.90; // ns.hyperreal.org
+        	65.214.43.13;   // ns1.kluge.net
+        	130.215.36.126; // alum.wpi.edu
+        	208.201.224.9;  // sonic.net
+        	208.201.224.164;// sonic.net
+	};
+
+	allow-transfer {
+        	209.237.226.90; // ns.hyperreal.org
+        	65.214.43.13;   // ns1.kluge.net
+        	130.215.36.126; // alum.wpi.edu
+        	208.201.224.9;  // sonic.net
+        	208.201.224.164;// sonic.net
+	};
 };