-
Notifications
You must be signed in to change notification settings - Fork 504
Expand file tree
/
Copy pathboti.bot.send-and-receive-email.json
More file actions
51 lines (51 loc) · 1.15 KB
/
boti.bot.send-and-receive-email.json
File metadata and controls
51 lines (51 loc) · 1.15 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
{
"providerId": "boti.bot",
"serviceId": "send-and-receive-email",
"providerName": "Boti",
"serviceName": "Boti Email (Send & Receive)",
"version": 4,
"logoUrl": "https://boti.bot/boti512.png",
"description": "Configures complete email setup: sending (SPF, DKIM, DMARC, Return-Path) and receiving (MX) for Boti.",
"syncBlock": false,
"syncPubKeyDomain": "boti.bot",
"syncRedirectDomain": "boti.bot",
"records": [
{
"type": "MX",
"host": "@",
"pointsTo": "mx.botimail.net",
"priority": 10,
"ttl": 120
},
{
"type": "SPFM",
"host": "@",
"spfRules": "include:botimail.net",
"ttl": 120
},
{
"type": "CNAME",
"host": "boti._domainkey",
"pointsTo": "boti._domainkey.botimail.net",
"ttl": 120
},
{
"type": "CNAME",
"host": "_dmarc",
"pointsTo": "_dmarc.botimail.net",
"ttl": 120
},
{
"type": "CNAME",
"host": "return",
"pointsTo": "mail.botimail.net",
"ttl": 120
},
{
"type": "TXT",
"host": "_boti-verify-%accountId%",
"data": "boti-domain-verify",
"ttl": 120
}
]
}