I am having issues with DNS and SPF setup... I have my DNS setup on godaddy that points to my mail server and website and even attempted to setup SPF there last night. On my actual server which is behind a firewall I have the following setup. Can someone please tell me what is going wrong, when I send an email to gmail it says that SPF Record is Neutral still..
resolv.conf
named.conf.optionsPHP Code:# Generated by NetworkManager
nameserver 127.0.0.1
db.mywebsitePHP Code:options {
directory "/etc/bind";
query-source address * port 53;
forwarders {
192.168.1.1; xx.xx.xx.xx(external ip);
};
auth-nxdomain no; # conform to RFC1035
};
db.192PHP Code:;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA mywebsite. user.mywebsite. (
201214062 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS mail
@ IN MX 10 mail
@ IN A 192.168.1.100
@ IN AAAA ::1
mail IN A 192.168.1.100
; SPF stuff
; domain SPF
192.168.1.100. IN TXT "v=spf1 mx -all"
; AND
192.168.1.100. IN SPF "v=spf1 mx -all"
; mail host SPF
mail IN TXT "v=spf1 a -all"
; AND
mail IN SPF "v=spf1 a -all"
PHP Code:;
; BIND reverse data file for local loopback interface
;
$TTL 604800
@ IN SOA mywebsite. user.mywebsite. (
221214061 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS mywebsite.
@ IN PTR mywebsite.
10 IN PTR mail.mywebsite.


LinkBack URL
About LinkBacks

