forked from Domain-Connect/Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheverinbox.domain-auth-tracking.json
More file actions
60 lines (60 loc) · 1.96 KB
/
everinbox.domain-auth-tracking.json
File metadata and controls
60 lines (60 loc) · 1.96 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
{
"providerId": "everinbox",
"providerName": "Everinbox",
"serviceId": "domain-auth-tracking",
"serviceName": "Domain Authentication with Tracking",
"version": 1,
"logoUrl": "https://everinbox.com.br/everinbox-logo-dark.svg",
"description": "Configures domain authentication, DKIM, DMARC and link tracking records for complete email delivery service",
"variableDescription": "MAIL_SUBDOMAIN is the mail routing subdomain, MAIL_TARGET is the mail server target, DKIM_SELECTOR1/DKIM_SELECTOR2 are DKIM selectors, DKIM_TARGET1/DKIM_TARGET2 are DKIM targets, DMARC_POLICY is the DMARC policy, URL_TRACKING_SUBDOMAIN is the URL tracking subdomain, URL_TRACKING_TARGET is the URL tracking target, CLICK_TRACKING_SUBDOMAIN is the click tracking subdomain, CLICK_TRACKING_TARGET is the click tracking target",
"syncBlock": false,
"syncPubKeyDomain": "domainconnect.everinbox.com.br",
"syncRedirectDomain": "everinbox.com.br",
"warnPhishing": false,
"records": [
{
"groupId": "mail_routing",
"type": "CNAME",
"host": "%MAIL_SUBDOMAIN%",
"pointsTo": "%MAIL_TARGET%",
"ttl": 3600
},
{
"groupId": "dkim",
"type": "CNAME",
"host": "%DKIM_SELECTOR1%._domainkey",
"pointsTo": "%DKIM_TARGET1%",
"ttl": 3600
},
{
"groupId": "dkim",
"type": "CNAME",
"host": "%DKIM_SELECTOR2%._domainkey",
"pointsTo": "%DKIM_TARGET2%",
"ttl": 3600
},
{
"groupId": "dmarc",
"type": "TXT",
"host": "_dmarc",
"data": "%DMARC_POLICY%",
"ttl": 3600,
"txtConflictMatchingMode": "All",
"essential": "OnApply"
},
{
"groupId": "tracking",
"type": "CNAME",
"host": "%URL_TRACKING_SUBDOMAIN%",
"pointsTo": "%URL_TRACKING_TARGET%",
"ttl": 3600
},
{
"groupId": "tracking",
"type": "CNAME",
"host": "%CLICK_TRACKING_SUBDOMAIN%",
"pointsTo": "%CLICK_TRACKING_TARGET%",
"ttl": 3600
}
]
}