forked from enterstudio/dns-zone-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzoho-mail.txt
43 lines (36 loc) · 1.19 KB
/
zoho-mail.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;; Zoho Mail
;; https://www.zoho.com/mail/
;;
;; Docs:
;; https://www.zoho.com/mail/help/adminconsole/email-hosting-setup.html
;;
;; Adds the following records:
;; - CNAME Record: Custom Login URL for Zoho Mail (mail.yourdomain.com)
;; - MX Records: For inbound emails
;; - TXT Records: Domain Verification, SPF, DKIM & DMARC Policy (Optional)
;; === CNAME Record ===
mail 300 IN CNAME business.zoho.com.
;; === MX Records ===
@ 300 IN MX 10 mx.zoho.com.
@ 300 IN MX 20 mx2.zoho.com.
@ 300 IN MX 50 mx3.zoho.com.
;; === TXT Records ===
;; Domain Verification
;; - YOU MUST CHANGE THE "********" WITH YOUR ZOHO GENERATED CODE
zb******** 300 IN TXT zmverify.zoho.com
;; SPF
@ 300 IN TXT "v=spf1 include:zoho.com ~all"
;; DKIM
;; - YOU MUST CHANGE THIS
zoho._domainkey 300 IN TXT "CHANGE THIS WITH YOUR DKIM"
;; DMARC Policy
;;
;; Parameter "p":
;; - Phase 1: Monitor Reports and Traffic: p=none;
;;
;; - Phase 2: Quarantine Emails and Analyze: p=quarantine;
;; -- Parameter "pct": pct=20; - Only 20% of the emails that appear spoofed will be quarantined.
;;
;; - Phase 3: Reject Spoofed emails: p=reject;
;; Remove ";;" below to enable
;; _dmarc 300 IN TXT "v=DMARC1; p=none; rua=mailto:admin@yourdomain.com"