complete mx record?

kunal

Verified User
Joined
Nov 16, 2005
Messages
23
guys - i have just transferred a couple of domains from my old host/server to my new host/server.

Everything except for email is working. Let me explain with an example:

1. domain name: digitalhathi.com
2. NS entries are: ns1.axioshost.net, ns2.axioshost.net, ns3.axioshost.net
3. the DNS is hosted with axioshost.net.
4. I have replicated all the entries in the axioshost.net dns manager and my directadmin dns manager for digitalhathi.com (including MX records)

When i try to do a MX record look up, it says no entries found. Emails sent from gmail or some other sources are not reaching the above domain. However, Emails sent from other domains on the server are reaching just fine. The problem is sparodic. Emails are not bouncing either.

How do i fix this? Where do i look?
 
here is the zone file dump of one the domains:

Code:
bash-4.1# cat rkja.com.db

$TTL 14400
@       IN      SOA     ns1.axioshost.net.      root.rkja.com. (
                                                2014122703
                                                14400
                                                3600
                                                1209600
                                                86400 )

rkja.com.       14400   IN      NS      ns1.axioshost.net.
rkja.com.       14400   IN      NS      ns2.axioshost.net.
rkja.com.       14400   IN      NS      ns3.axioshost.net.

ftp     14400   IN      A       192.81.76.84
localhost       14400   IN      A       127.0.0.1
mail    14400   IN      A       192.81.76.84
pop     14400   IN      A       192.81.76.84
rkja.com.       14400   IN      A       192.81.76.84
smtp    14400   IN      A       192.81.76.84
www     14400   IN      A       192.81.76.84

rkja.com.       14400   IN      MX      10 mail



rkja.com.       14400   IN      TXT     "v=spf1 a mx ip4:192.81.76.84 ~all"

the other domain is:

Code:
bash-4.1# cat digitalhathi.com.db
$TTL 14400
@       IN      SOA     ns1.axioshost.net.      hostmaster.digitalhathi.com. (
                                                2014122801
                                                14400
                                                3600
                                                1209600
                                                86400 )

digitalhathi.com.       14400   IN      NS      ns1.axioshost.net.
digitalhathi.com.       14400   IN      NS      ns2.axioshost.net.

ftp     14400   IN      A       192.81.76.88
mail    14400   IN      A       192.81.76.88
pop     14400   IN      A       192.81.76.88
smtp    14400   IN      A       192.81.76.88
society 14400   IN      A       192.81.76.84
store   14400   IN      A       202.52.134.128
www     14400   IN      A       192.81.76.88
digitalhathi.com.       14400   IN      MX      10 mail

digitalhathi.com.       14400   IN      TXT     "v=spf1 a mx ip4:192.81.76.88 ~all"

Thank you for the help!
 
Last edited:
It is working fine to me:

Code:
>dig @ns1.axioshost.net digitalhathi.com MX

; <<>> DiG 9.9.4-RedHat-9.9.4-14.el7 <<>> @ns1.axioshost.net digitalhathi.com MX
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 39022
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; QUESTION SECTION:
;digitalhathi.com.              IN      MX

;; ANSWER SECTION:
digitalhathi.com.       14440   IN      MX      10 mail.digitalhathi.com.

;; ADDITIONAL SECTION:
mail.digitalhathi.com.  14440   IN      A       192.81.76.88

;; Query time: 138 msec
;; SERVER: 165.254.7.210#53(165.254.7.210)
;; WHEN: Sun Dec 28 16:25:05 CET 2014
;; MSG SIZE  rcvd: 71

Have you fixed it or was just DNS propagation issue?

Regards
 
yes.. i found the silli bug... i had to change this

digitalhathi.com. 14400 IN MX 10 mail

to this

digitalhathi.com. 14440 IN MX 10 mail.digitalhathi.com.


thanks for the help!
kunal
 
Back
Top