Skip to content

Commit

Permalink
fix: resend host domain key (#575)
Browse files Browse the repository at this point in the history
# Description

Fix an issue where the domain key was using the wrong host value.

## Type of change

Please mark options that are relevant.

- [ ] New template
- [x] Bug fix (non-breaking change which fixes an issue in the template)
- [ ] New feature (non-breaking change which adds functionality to the
template)
- [ ] Breaking change (fix or feature that would cause existing template
behavior to be not backward compatible)

# How Has This Been Tested?

Please mark the following checks done
- [ ] Schema validated using JSON Schema
[template.schema](./template.schema)
- [ ] Template functionality checked using [Online
Editor](https://domainconnect.paulonet.eu/dc/free/templateedit)
- [ ] Template is checked using [template
linter](https://github.com/Domain-Connect/dc-template-linter)
- [ ] Template file name follows the pattern
`<providerId>.<serviceId>.json`

# Example variable values

```
region: us-east-1
publicKey: RANDOM-VALUE
```
  • Loading branch information
pawel-kow authored Jan 29, 2025
2 parents 5bfe240 + 8665f5c commit 51a5e31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resend.com.mail.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"providerName": "Resend",
"serviceId": "mail",
"serviceName": "Mail",
"version": 1,
"version": 2,
"syncPubKeyDomain": "resend.com",
"syncRedirectDomain": "resend.com",
"description": "Enable email signing and specify authorized senders.",
Expand All @@ -24,7 +24,7 @@
},
{
"type": "TXT",
"host": "send",
"host": "resend._domainkey",
"ttl": 3600,
"data": "p=%domainKey%"
}
Expand Down

0 comments on commit 51a5e31

Please sign in to comment.