forked from Domain-Connect/Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharkhq.io.email-sending.json
More file actions
34 lines (34 loc) · 908 Bytes
/
Copy patharkhq.io.email-sending.json
File metadata and controls
34 lines (34 loc) · 908 Bytes
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": "arkhq.io",
"providerName": "Ark",
"serviceId": "email-sending",
"serviceName": "Email Sending",
"version": 1,
"logoUrl": "https://arkhq.io/ark-logo.png",
"description": "Configure DNS records for sending emails with Ark.",
"variableDescription": "dkimSelector: DKIM selector identifier; dkimPublicKey: DKIM public key (base64); spfInclude: SPF include domain; returnPathTarget: Return path CNAME target",
"syncPubKeyDomain": "arkhq.io",
"syncRedirectDomain": "arkhq.io",
"records": [
{
"groupId": "dkim",
"type": "TXT",
"host": "%dkimSelector%._domainkey",
"data": "v=DKIM1; t=s; h=sha256; p=%dkimPublicKey%",
"ttl": 3600
},
{
"groupId": "spf",
"type": "SPFM",
"host": "@",
"spfRules": "include:%spfInclude%"
},
{
"groupId": "return-path",
"type": "CNAME",
"host": "psrp",
"pointsTo": "%returnPathTarget%",
"ttl": 3600
}
]
}