Skip to content

Commit 3cb267e

Browse files
authored
Merge branch 'master' into add-mailblastr-verification-and-receive
2 parents 6029b9c + 88d76fd commit 3cb267e

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

gofarther.dev.email.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"providerId": "gofarther.dev",
3+
"providerName": "Go Farther",
4+
"serviceId": "email",
5+
"serviceName": "Go Farther — send email from your domain (Sendra)",
6+
"version": 1,
7+
"description": "Adds the DNS records that let Go Farther / Sendra send email from your domain (Amazon SES DKIM + a DMARC policy).",
8+
"variableDescription": "Your domain's three Amazon SES DKIM tokens.",
9+
"syncBlock": false,
10+
"shared": false,
11+
"syncRedirectDomain": "gofarther.dev,lkpfeqrelvziltfwpuxi.supabase.co",
12+
"syncPubKeyDomain": "gofarther.dev",
13+
"records": [
14+
{ "type": "CNAME", "host": "%dkim1%._domainkey", "pointsTo": "%dkim1%.dkim.amazonses.com", "ttl": 3600 },
15+
{ "type": "CNAME", "host": "%dkim2%._domainkey", "pointsTo": "%dkim2%.dkim.amazonses.com", "ttl": 3600 },
16+
{ "type": "CNAME", "host": "%dkim3%._domainkey", "pointsTo": "%dkim3%.dkim.amazonses.com", "ttl": 3600 },
17+
{ "type": "TXT", "host": "_dmarc", "data": "v=DMARC1; p=none;", "ttl": 3600 }
18+
]
19+
}

mailblastr.com.email.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"providerId": "mailblastr.com",
3+
"providerName": "MailBlastr",
4+
"serviceId": "email",
5+
"serviceName": "MailBlastr Email Sending",
6+
"version": 1,
7+
"syncPubKeyDomain": "mailblastr.com",
8+
"syncRedirectDomain": "www.mailblastr.com",
9+
"description": "Enable email signing (DKIM) and specify authorized senders (SPF) for sending through MailBlastr (Amazon SES).",
10+
"variableDescription": "domainKey is the BYODKIM public key (base64); region is the SES region (e.g. us-east-1); mailfromhost is the custom MAIL FROM subdomain label (e.g. send).",
11+
"logoUrl": "https://www.mailblastr.com/logo.svg",
12+
"records": [
13+
{ "groupId": "outbound", "type": "MX", "host": "%mailfromhost%", "pointsTo": "feedback-smtp.%region%.amazonses.com", "priority": 10, "ttl": 3600 },
14+
{ "groupId": "outbound", "type": "SPFM", "host": "%mailfromhost%", "spfRules": "include:amazonses.com", "ttl": 3600 },
15+
{ "groupId": "dkim", "type": "TXT", "host": "mailblastr._domainkey", "data": "v=DKIM1; k=rsa; p=%domainKey%", "ttl": 3600 }
16+
]
17+
}

0 commit comments

Comments
 (0)