Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions uspeedo.com.email.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"providerId": "uspeedo.com",
"providerName": "Uspeedo.com",
"serviceId": "email",
"serviceName": "Uspeedo.com Email",
"version": 1,
"logoUrl": "https://cdn.uspeedo.com/home-v2/main/logo_en.svg",
"description": "Automatically configures DNS records for Uspeedo email services.",
"variableDescription": "subdomain: The subdomain prefix (use @ for root domain). spf_val: SPF record value. dkim_selector: DKIM selector. dkim_val: DKIM public key. mx_primary: Primary MX server. mx_backup: Backup MX server. dmarc_val: DMARC policy. track_host: Tracking subdomain. track_target: Tracking CNAME target.",
"syncPubKeyDomain": "uspeedo.com",
"syncRedirectDomain": "uspeedo.com",
"records": [
{
"type": "TXT",
"host": "%subdomain%",
"ttl": "3600",
"data": "%spf_val%"
},
{
"type": "TXT",
"groupId": "dkim",
"host": "%dkim_selector%._domainkey.%subdomain%",
"ttl": "3600",
"data": "%dkim_val%"
},
{
"type": "MX",
"groupId": "mx",
"host": "%subdomain%",
"pointsTo": "%mx_primary%",
"ttl": "3600",
"priority": "10"
},
{
"type": "MX",
"groupId": "mx",
"host": "%subdomain%",
"pointsTo": "%mx_backup%",
"ttl": "3600",
"priority": "20"
},
{
"type": "TXT",
"groupId": "dmarc",
"host": "_dmarc.%subdomain%",
"ttl": "3600",
"data": "%dmarc_val%"
},
{
"type": "CNAME",
"groupId": "tracking",
"host": "%track_host%",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this host under %subdomain%?
If it is the whole template could have used @ instead of %subdomain% and standard host parameter, which has quite benefits - template can be applied several times to the same domain and different subdomains if needed.
Otherwise multiInstance setting might be of help.

"pointsTo": "%track_target%",
"ttl": "3600"
}
]
}