forked from Domain-Connect/Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapollodeploy.com.signal-sending-cname.json
More file actions
34 lines (34 loc) · 1.21 KB
/
Copy pathapollodeploy.com.signal-sending-cname.json
File metadata and controls
34 lines (34 loc) · 1.21 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
{
"providerId": "apollodeploy.com",
"providerName": "Apollo Signal",
"serviceId": "signal-sending-cname",
"serviceName": "Email sending (CNAME DKIM)",
"version": 1,
"logoUrl": "https://apollodeploy.com/favicon.ico",
"description": "Configures the DNS records required to send email with Apollo Signal when DKIM uses a CNAME selector: CNAME DKIM, MAIL FROM MX, and SPF for the bounce subdomain.",
"variableDescription": "%dkimSelector%: DKIM selector label; %dkimPointsTo%: CNAME target hostname; %mailFromSubdomain%: MAIL FROM subdomain (e.g. bounce); %mailFromMx%: MX target hostname; %mailFromPriority%: MX priority; %spfInclude%: SPF include domain",
"syncPubKeyDomain": "keys.apollodeploy.com",
"syncRedirectDomain": "signal.apollodeploy.com",
"syncBlock": false,
"records": [
{
"type": "CNAME",
"host": "%dkimSelector%._domainkey",
"pointsTo": "%dkimPointsTo%",
"ttl": 3600
},
{
"type": "MX",
"host": "%mailFromSubdomain%",
"pointsTo": "%mailFromMx%",
"priority": "%mailFromPriority%",
"ttl": 3600
},
{
"type": "SPFM",
"host": "%mailFromSubdomain%",
"spfRules": "include:%spfInclude%",
"ttl": 3600
}
]
}