|
| 1 | +{ |
| 2 | + "providerId": "sendix.dev", |
| 3 | + "providerName": "Sendix", |
| 4 | + "serviceId": "ses", |
| 5 | + "serviceName": "Amazon SES Sending", |
| 6 | + "version": 1, |
| 7 | + "syncPubKeyDomain": "sendix.dev", |
| 8 | + "syncRedirectDomain": "sendix.dev", |
| 9 | + "description": "Configure Amazon SES DNS records for sending email with Sendix.", |
| 10 | + "logoUrl": "https://sendix.dev/brand/sendix-wordmark.svg", |
| 11 | + "variableDescription": "%sesVerificationValue%: Amazon SES domain verification token. %dkimToken1%, %dkimToken2%, %dkimToken3%: Amazon SES DKIM tokens. %awsRegion%: Amazon SES region, for example eu-central-1.", |
| 12 | + "records": [ |
| 13 | + { |
| 14 | + "groupId": "ses-verification", |
| 15 | + "type": "TXT", |
| 16 | + "host": "_amazonses", |
| 17 | + "ttl": 3600, |
| 18 | + "data": "%sesVerificationValue%", |
| 19 | + "essential": "OnApply" |
| 20 | + }, |
| 21 | + { |
| 22 | + "groupId": "ses-dkim-1", |
| 23 | + "type": "CNAME", |
| 24 | + "host": "%dkimToken1%._domainkey", |
| 25 | + "ttl": 3600, |
| 26 | + "pointsTo": "%dkimToken1%.dkim.amazonses.com" |
| 27 | + }, |
| 28 | + { |
| 29 | + "groupId": "ses-dkim-2", |
| 30 | + "type": "CNAME", |
| 31 | + "host": "%dkimToken2%._domainkey", |
| 32 | + "ttl": 3600, |
| 33 | + "pointsTo": "%dkimToken2%.dkim.amazonses.com" |
| 34 | + }, |
| 35 | + { |
| 36 | + "groupId": "ses-dkim-3", |
| 37 | + "type": "CNAME", |
| 38 | + "host": "%dkimToken3%._domainkey", |
| 39 | + "ttl": 3600, |
| 40 | + "pointsTo": "%dkimToken3%.dkim.amazonses.com" |
| 41 | + }, |
| 42 | + { |
| 43 | + "groupId": "dmarc", |
| 44 | + "type": "TXT", |
| 45 | + "host": "_dmarc", |
| 46 | + "ttl": 3600, |
| 47 | + "data": "v=DMARC1; p=none; rua=mailto:dmarc-reports@sendix.dev; aspf=r; adkim=r", |
| 48 | + "essential": "OnApply", |
| 49 | + "txtConflictMatchingMode": "Prefix", |
| 50 | + "txtConflictMatchingPrefix": "v=DMARC1" |
| 51 | + }, |
| 52 | + { |
| 53 | + "groupId": "ses-mail-from-mx", |
| 54 | + "type": "MX", |
| 55 | + "host": "ses-bounce", |
| 56 | + "ttl": 3600, |
| 57 | + "priority": 10, |
| 58 | + "pointsTo": "feedback-smtp.%awsRegion%.amazonses.com" |
| 59 | + }, |
| 60 | + { |
| 61 | + "groupId": "ses-mail-from-spf", |
| 62 | + "type": "SPFM", |
| 63 | + "host": "ses-bounce", |
| 64 | + "ttl": 3600, |
| 65 | + "spfRules": "include:amazonses.com" |
| 66 | + }, |
| 67 | + { |
| 68 | + "groupId": "tracking", |
| 69 | + "type": "CNAME", |
| 70 | + "host": "click", |
| 71 | + "ttl": 3600, |
| 72 | + "pointsTo": "track.sendix.dev" |
| 73 | + } |
| 74 | + ] |
| 75 | +} |
0 commit comments