From a2ef82c3bfcecfdf7d4e74f73317a9e1e93fdde7 Mon Sep 17 00:00:00 2001 From: Peloran Date: Tue, 25 Aug 2026 20:10:25 +0300 Subject: [PATCH] Add peloran.com email template for transactional DNS (SPF/DKIM/MX) --- peloran.com.email.json | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 peloran.com.email.json diff --git a/peloran.com.email.json b/peloran.com.email.json new file mode 100644 index 00000000..154db84c --- /dev/null +++ b/peloran.com.email.json @@ -0,0 +1,42 @@ +{ + "providerId": "peloran.com", + "providerName": "Peloran", + "serviceId": "email", + "serviceName": "Email", + "version": 1, + "syncPubKeyDomain": "peloran.com", + "syncRedirectDomain": "app.peloran.com", + "description": "Configure DKIM, SPF, MX, and optional click-tracking CNAME for transactional email.", + "logoUrl": "https://www.peloran.com/peloran-logo3b.svg", + "records": [ + { + "groupId": "outbound", + "type": "MX", + "host": "%spfDomain%", + "pointsTo": "feedback-smtp.%region%.amazonses.com", + "ttl": 3600, + "priority": 10 + }, + { + "groupId": "outbound", + "type": "SPFM", + "host": "%spfDomain%", + "ttl": 3600, + "spfRules": "include:amazonses.com" + }, + { + "groupId": "dkim", + "type": "TXT", + "host": "resend._domainkey", + "ttl": 3600, + "data": "p=%domainKey%" + }, + { + "groupId": "click-tracking", + "type": "CNAME", + "host": "%clickTrackingSubdomain%", + "pointsTo": "%clickTrackingCnameTarget%.resend-dns.com", + "ttl": 3600 + } + ] +}