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/11 02:54:33 UTC

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

Author: felicity
Date: Sat Dec 10 17:54:31 2005
New Revision: 355862

URL: http://svn.apache.org/viewcvs?rev=355862&view=rev
Log:
put the named.conf file in svn too

Added:
    spamassassin/dns/named.conf

Added: spamassassin/dns/named.conf
URL: http://svn.apache.org/viewcvs/spamassassin/dns/named.conf?rev=355862&view=auto
==============================================================================
--- spamassassin/dns/named.conf (added)
+++ spamassassin/dns/named.conf Sat Dec 10 17:54:31 2005
@@ -0,0 +1,35 @@
+// Slave servers
+acl slaves {
+	209.237.226.90;	// ns.hyperreal.org
+	65.214.43.13;	// ns1.kluge.net
+};
+
+options {
+	directory "/var/named";
+	query-source address * port 53;
+
+	allow-transfer { slaves; };
+	pid-file "/tmp/named.pid";
+	recursion yes;
+	notify no;			// Leave it up to each zone ...
+	interface-interval 0;		// We don't change interfaces ...
+	auth-nxdomain no;		// Conform to RFC1035
+};
+
+include "/var/named/named.keys";
+
+controls {
+      inet 127.0.0.1 port 953
+              allow { 127.0.0.1; } keys { "rndc-key"; };
+};
+
+// Limit logging to syslog only, and kill the lame-server business ...
+logging {
+	category default { default_syslog; };
+        category lame-servers { null; };
+};
+
+zone "spamassassin.org" {
+	type master;
+	file "spamassassin.org";
+};