I'm a fool!
I set up dns incorrectly - the mail system now works!!
Last question - When I add a domain to Bind9 using ISPConfig how do I stop....
<!-- BEGIN DYNAMIC BLOCK: named_reverse -->
zone "{ZONE}.in-addr.arpa" {
type master;
file "pri.{ZONE}.in-addr.arpa";
};
<!-- END DYNAMIC BLOCK: named_reverse -->
being written into /etc/bind/named.conf
I expect that what should be written is.....
<!-- BEGIN DYNAMIC BLOCK: named_reverse -->
zone "foo.com.in-addr.arpa" {
type master;
file "pri.foo.com.in-addr.arpa";
};
<!-- END DYNAMIC BLOCK: named_reverse -->
or
<!-- BEGIN DYNAMIC BLOCK: named_reverse -->
zone "123.123.123.123.in-addr.arpa" {
type master;
file "pri.123.123.123.123.in-addr.arpa";
};
<!-- END DYNAMIC BLOCK: named_reverse -->
|