Hi,
Your zonefile is wrong.
You have both a CNAME and an A RR for smtp.stylez24.com. You should use only one (better leave the A RR)
Also the mail CNAME points to a non existent hostname. Besides that, it's advisable that MX should not be a CNAME, because some mailservers will complain.
Try the following and see if it works:
Code:
$TTL 604800
@ IN SOA server.stylez24.com. admin.stylez24.com. (
3 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
stylez24.com. IN NS stylez24.com.
stylez24.com. IN A 192.168.10.1
@ IN A 127.0.0.1
@ IN AAAA ::1
www IN CNAME stylez24.com.
stylez IN A 192.168.10.1
smtp IN A 192.168.10.2
IN MX 10 mail.stylez24.com.
mail IN A 192.168.10.2