I have tried and tried to get this working. The closest I get is incoming mail gets queued up on the server and never goes to the mailboxes.
This is currently what I get from nslookup...
root@ubuntu-srv:/var/cache/bind# nslookup ubuntu-srv.appconnex.com
Server: 192.168.1.50
Address: 192.168.1.50#53
*** Can't find ubuntu-srv.appconnex.com: No answer
Here's my named.conf.local file...
// We are the master server for ubuntu-srv.appconnex.com
zone "ubuntu-srv.appconnex.com" {
type master;
file "db.ubuntu-srv.appconnex.com";
};
//
Here's my db.ubuntu-srv.appconnex.com file...
;
; Addresses and other host information.
;
@ IN SOA ubuntu-srv.appconnex.com. hostmaster.ubuntu-srv.appconnex.com. (
10118 ; Serial
43200 ; Refresh
3600 ; Retry
3600000 ; Expire
2592000 ) ; Minimum
; Define the nameservers and the mail servers
IN NS 192.168.1.50 ; local ip
ubuntu-srv IN A 192.168.1.50 ; local ip
IN MX 10 ubuntu-srv.appconnex.com. ;MXrecord
Here's my resolv.conf file...
nameserver 192.168.1.50
Please help...what am I doing wrong here?
Thanks!


LinkBack URL
About LinkBacks


