forked from Domain-Connect/Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcirrux.co.mailbox.json
More file actions
67 lines (67 loc) · 1.77 KB
/
Copy pathcirrux.co.mailbox.json
File metadata and controls
67 lines (67 loc) · 1.77 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"providerId": "cirrux.co",
"providerName": "Cirrux",
"serviceId": "mailbox",
"serviceName": "Cirrux Mail",
"description": "Configure DNS records for Cirrux email service (MX, SPF, DKIM, DMARC, and domain verification).",
"variableDescription": "verification_token: Domain ownership verification token. dkim_selector_1, dkim_selector_2, dkim_selector_3: DKIM key selectors for email signing.",
"syncPubKeyDomain": "cirrux.co",
"shared": false,
"version": 1,
"logoUrl": "https://static.cirrux.co/mail/img/favicon/favicon-512.png",
"hostRequired": false,
"records": [
{
"type": "TXT",
"host": "@",
"data": "cirrux-verification=%verification_token%",
"ttl": 3600
},
{
"type": "CNAME",
"host": "%dkim_selector_1%._domainkey",
"pointsTo": "%dkim_selector_1%.%domain%.dkim.cirrux.co",
"ttl": 3600
},
{
"type": "CNAME",
"host": "%dkim_selector_2%._domainkey",
"pointsTo": "%dkim_selector_2%.%domain%.dkim.cirrux.co",
"ttl": 3600
},
{
"type": "CNAME",
"host": "%dkim_selector_3%._domainkey",
"pointsTo": "%dkim_selector_3%.%domain%.dkim.cirrux.co",
"ttl": 3600
},
{
"type": "SPFM",
"host": "@",
"spfRules": "include:_spf.cirrux.co",
"ttl": 3600
},
{
"type": "TXT",
"host": "_dmarc",
"data": "v=DMARC1; p=reject; rua=mailto:dmarc@cirrux.co",
"ttl": 3600,
"txtConflictMatchingMode": "All",
"essential": "OnApply"
},
{
"type": "MX",
"host": "@",
"pointsTo": "smtp.cirrux.co",
"priority": 10,
"ttl": 3600
},
{
"type": "MX",
"host": "@",
"pointsTo": "mx-fallback.cirruxmail.com",
"priority": 20,
"ttl": 3600
}
]
}