Skip to content

Commit 9102659

Browse files
authored
Create sidemail.io.domain-auth.json (#572)
# Description Initial creation of the Domain Connect template for Sidemail.io to provide simpler DNS configuration for our users for email sending. ## Type of change Please mark options that are relevant. - [x] New template - [ ] Bug fix (non-breaking change which fixes an issue in the template) - [ ] New feature (non-breaking change which adds functionality to the template) - [ ] Breaking change (fix or feature that would cause existing template behavior to be not backward compatible) # How Has This Been Tested? Please mark the following checks done - [x] Schema validated using JSON Schema [template.schema](./template.schema) - [x] Template functionality checked using [Online Editor](https://pdnsadmin.revproxy.short-lived.de/dc/free/templateedit) - [x] Template is checked using [template linter](https://github.com/Domain-Connect/dc-template-linter) - [x] Template file name follows the pattern `<providerId>.<serviceId>.json`
2 parents 71a623a + 9a05ebc commit 9102659

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

sidemail.io.domain-auth.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"providerId": "sidemail.io",
3+
"providerName": "Sidemail.io",
4+
"serviceId": "domain-auth",
5+
"serviceName": "Sidemail.io Domain Authentication",
6+
"description": "This template sets up the necessary DNS records for Sidemail.io domain authentication, including DKIM and sending domain configurations.",
7+
"version": 1,
8+
"logoUrl": "https://sidemail.io/assets/logo.png",
9+
"syncPubKeyDomain": "sidemail.io",
10+
"syncRedirectDomain": "sidemail.io, api.sidemail.io",
11+
"records": [
12+
{
13+
"type": "CNAME",
14+
"host": "%DKIM_HOSTNAME%",
15+
"pointsTo": "%DKIM_HOSTNAME_POINTS_TO%",
16+
"ttl": 1800
17+
},
18+
{
19+
"type": "CNAME",
20+
"host": "%SENDING_DOMAIN%",
21+
"pointsTo": "%SENDING_DOMAIN_POINTS_TO%",
22+
"ttl": 1800
23+
}
24+
]
25+
}

0 commit comments

Comments
 (0)