ispCP - Board - Support
[SOLVED] Missing MX Records - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: System Setup & Installation (/forum-32.html)
+--- Thread: [SOLVED] Missing MX Records (/thread-10211.html)



[SOLVED] Missing MX Records - Diego - 04-02-2010 01:50 AM

Using http://www.intodns.com

I get this message:
Quote:Oh well, I did not detect any MX records so you probably don't have any and if you know you should have then they may be missing at your nameservers!

As you can see on my file, I'm trying to set my MX records to point to google servers.

So, what could be wrong.

Note: I'm editing the file /var/cache/bind/digiscrappersbrasil.com.br.db and copying over /var/ispcp/bind/working and then reloading bind9.

Thanks

Quote:$TTL 12H
$ORIGIN mydomain.com.br.
@ IN SOA ns1.mydomain.com. postmaster.mydomain.com.br. (
; dmn [mydomain.com.br] timestamp entry BEGIN.
2010040104
; dmn [mydomain.com.br] timestamp entry END.
8H ; Refresh
30M ; Retry
4W ; Expire
1H ; Minimum TTL
)
IN NS ns1.mydomain.com.
IN NS ns2.mydomain.com.
IN MX 1 ASPMX.L.GOOGLE.COM.
IN MX 5 ALT1.ASPMX.L.GOOGLE.COM.
IN MX 5 ALT2.ASPMX.L.GOOGLE.COM.
IN MX 10 ASPMX2.GOOGLEMAIL.COM.
IN MX 10 ASPMX3.GOOGLEMAIL.COM.

webmail IN CNAME ghs.google.com.
googlef51e23381b3b80ca IN CNAME google.com.

admin IN A 78.46.663.112
mydomain.com.br. IN A 78.46.663.112
www IN A 78.46.663.112
mydomain.com.br. IN TXT "v=spf1 a mx ip4:78.46.663.112 ip4:78.46.663.112 include:aspmx.googlemail.com ~all"
localhost IN A 127.0.0.1
ns1 IN A 78.46.663.112
ns2 IN A 78.46.663.112
; CNAME for VHCS compatibility
ns IN CNAME ns1
; CNAME for mail transfer
calendar IN CNAME ghs.google.com.
start IN CNAME ghs.google.com.
mail IN CNAME ghs.google.com.
docs IN CNAME ghs.google.com.
sites IN CNAME ghs.google.com.

; CNAME for web transfer
ftp IN CNAME www



RE: Missing MX Records - kurgans - 04-02-2010 05:05 AM

You must also edit

/etc/ispcp/bind/working


RE: Missing MX Records - Diego - 04-02-2010 06:28 AM

(04-02-2010 05:05 AM)kurgans Wrote:  You must also edit

/etc/ispcp/bind/working

Hello kurgans, I have replaced the db file from the cache over the working dir, but still the same.
Thank you!


RE: Missing MX Records - kilburn - 04-02-2010 06:49 AM

For some reason bind is *not* reading your changed zonefile. Have you tried stopping it (/etc/init.d/bind9 stop), then killing any leftover "named" processes manually and then restarting the server? I think this should help....


RE: Missing MX Records - Diego - 04-02-2010 06:59 AM

(04-02-2010 06:49 AM)kilburn Wrote:  For some reason bind is *not* reading your changed zonefile. Have you tried stopping it (/etc/init.d/bind9 stop), then killing any leftover "named" processes manually and then restarting the server? I think this should help....

Not yet. I'll do it when I get back home and see what happens.
For now I rolled back the default DNS file which points to mail.digiscrappersbrasil.com.br and everything looks fine.
Will test that. and see what happens
thanks a lot!


RE: Missing MX Records - Diego - 04-02-2010 11:34 AM

(04-02-2010 06:49 AM)kilburn Wrote:  For some reason bind is *not* reading your changed zonefile. Have you tried stopping it (/etc/init.d/bind9 stop), then killing any leftover "named" processes manually and then restarting the server? I think this should help....
weird - using bind9 stop and start did the trick, but using restart didn't
?:o

Thansk kilburn and kurgans