Skip to content
Merged
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
22 changes: 17 additions & 5 deletions reloop.sh.email-setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,22 @@
"providerName": "Reloop",
"serviceId": "email-setup",
"serviceName": "Reloop Email",
"version": 1,
"version": 2,
"logoUrl": "https://reloop.sh/icon.svg",
"description": "Configures DNS records for sending and receiving email via Reloop. Sets up DKIM authentication, SPF authorization, DMARC policy, MX routing, and optional click/open tracking.",
"variableDescription": "domainKey: The DKIM public key material that Reloop generates for this domain at setup time.",
"syncPubKeyDomain": "reloop.sh",
"syncRedirectDomain": "reloop.sh",
"syncBlock": false,
"hostRequired": false,
"records": [
{
"groupId": "verification",
"type": "TXT",
"host": "reloop._domainkey",
"data": "v=DKIM1; k=rsa; p=%domainKey%",
"ttl": 3600
"ttl": 3600,
"txtConflictMatchingMode": "None"
},
{
"groupId": "sending",
Expand All @@ -25,25 +27,35 @@
"spfRules": "include:reloop.sh",
"ttl": 3600
},
{
"groupId": "sending",
"type": "MX",
"host": "@",
"pointsTo": "reloop.sh",
"priority": 10,
"ttl": 3600
},
{
"groupId": "sending",
"type": "TXT",
"host": "_dmarc",
"data": "v=DMARC1; p=reject;",
"ttl": 3600
"ttl": 3600,
"txtConflictMatchingMode": "None",
"essential": "OnApply"
},
{
"groupId": "receiving",
"type": "MX",
"host": "@",
"pointsTo": "reloop.sh",
"pointsTo": "inbound.reloop.sh",
"priority": 10,
"ttl": 3600
},
{
"groupId": "tracking",
"type": "CNAME",
"host": "tracking",
"host": "link",
"pointsTo": "link.reloop.sh",
"ttl": 3600
}
Expand Down
Loading