-
Notifications
You must be signed in to change notification settings - Fork 504
Expand file tree
/
Copy pathatlos.email.mail.json
More file actions
53 lines (53 loc) · 1.36 KB
/
atlos.email.mail.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"providerId": "atlos.email",
"providerName": "ATLOS Mail",
"serviceId": "mail",
"serviceName": "ATLOS Mail — Email Service",
"version": 2,
"logoUrl": "https://app.atlos.email/logo-wordmark.svg",
"description": "Configure DNS records for ATLOS Mail email service. Creates MX, SPF, DKIM, DMARC, and auto-discovery records.",
"variableDescription": "The domain to configure for ATLOS Mail",
"syncBlock": false,
"syncPubKeyDomain": "domainconnect.atlos.email",
"syncRedirectDomain": "app.atlos.email",
"records": [
{
"type": "MX",
"host": "@",
"pointsTo": "mx1.atlos.email",
"priority": 10,
"ttl": 3600
},
{
"type": "SPFM",
"host": "@",
"spfRules": "include:mx1.atlos.email"
},
{
"type": "TXT",
"host": "stalwart._domainkey",
"data": "v=DKIM1; k=ed25519; p=%dkimKey%",
"ttl": 3600
},
{
"type": "TXT",
"host": "_dmarc",
"data": "v=DMARC1; p=quarantine; rua=mailto:dmarc@%domain%; fo=1",
"ttl": 3600,
"txtConflictMatchingMode": "Prefix",
"txtConflictMatchingPrefix": "v=DMARC1"
},
{
"type": "CNAME",
"host": "autoconfig",
"pointsTo": "app.atlos.email",
"ttl": 3600
},
{
"type": "CNAME",
"host": "autodiscover",
"pointsTo": "app.atlos.email",
"ttl": 3600
}
]
}