-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathaurorasendcloud.com.email-auth.json
More file actions
78 lines (78 loc) · 2.21 KB
/
Copy pathaurorasendcloud.com.email-auth.json
File metadata and controls
78 lines (78 loc) · 2.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
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
68
69
70
71
72
73
74
75
76
77
78
{
"providerId": "aurorasendcloud.com",
"providerName": "sendcloud",
"serviceId": "email-auth",
"serviceName": "SendCloud Email Sending Authentication",
"version": 1,
"logoUrl": "https://www.aurorasendcloud.com/logo_simple.svg",
"syncPubKeyDomain": "aurorasendcloud.com",
"description": "Configures DNS records for SendCloud email Sending",
"variableDescription": "dkimvalue: DKIM public key value. dmarcvalue: DMARC policy.",
"records": [
{
"groupId": "classic",
"type": "SPFM",
"host": "@",
"spfRules": "include:spf.sendcloud.org",
"ttl": 600
},
{
"groupId": "classic",
"type": "TXT",
"host": "mail._domainkey",
"data": "k=rsa;p=%dkimvalue%",
"ttl": 600
},
{
"groupId": "classic",
"type": "TXT",
"host": "_dmarc",
"data": "v=DMARC1;p=%dmarcvalue%",
"ttl": 600
},
{
"groupId": "classic",
"type": "MX",
"host": "@",
"pointsTo": "mx2.sendcloud.org",
"ttl": 600,
"priority": 10
},
{
"groupId": "auto",
"type": "SPFM",
"host": "@",
"spfRules": "include:spf.sendcloud.org",
"ttl": 600
},
{
"groupId": "auto",
"type": "CNAME",
"host": "e1._domainkey",
"pointsTo": "e1._domainkey.%dkimvalue%",
"ttl": 600
},
{
"groupId": "auto",
"type": "CNAME",
"host": "e2._domainkey",
"pointsTo": "e2._domainkey.%dkimvalue%",
"ttl": 600
},
{
"groupId": "auto",
"type": "TXT",
"host": "_dmarc",
"data": "v=DMARC1;p=%dmarcvalue%",
"ttl": 600
},
{
"groupId": "auto",
"type": "MX",
"host": "@",
"pointsTo": "mx2.sendcloud.org",
"ttl": 600,
"priority": 10
}
]
}