Created
July 23, 2015 06:09
-
-
Save andreferraro/aa91a4e5bf1494dee346 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$TTL 604800 | |
@ IN SOA ns1.abc.com. hostmaster.abc.com. ( | |
5 ; Serial | |
604800 ; Refresh | |
86400 ; Retry | |
2419200 ; Expire | |
604800 ) ; Negative Cache TTL | |
; | |
; Name servers | |
abc.com. IN NS ns1.abc.com. | |
; NS RECORDS | |
ns1 IN A 172.16.0.200 | |
; A RECORDS | |
@ IN A 172.16.0.200 | |
mx1 IN A 172.16.0.200 | |
db IN A 172.16.0.200 | |
www IN A 172.16.0.200 | |
; MX | |
abc.com. IN MX 10 mx1.abc.com. | |
; CNAME | |
imap 100 IN CNAME mail | |
smtp 100 IN CNAME mail | |
pop3 100 IN CNAME mail | |
pop 100 IN CNAME mail | |
webmail 100 IN CNAME mail | |
painel 100 IN CNAME www | |
ftp 100 IN CNAME www | |
; TXT/SPF RECORDS | |
abc.com. IN TXT "v=spf1 mx -all" | |
abc.com. IN SPF "v=spf1 mx -all" | |
; DMARC | |
_dmarc TXT ( "v=DMARC1;p=nome;sp=reject;pct=10;adkim=r;aspf=r;fo=1;ri=86400;rua=mailto:[email protected]" ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment