Skip to content
Open
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
35 changes: 35 additions & 0 deletions euromail.dev.mail.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"providerId": "euromail.dev",
"providerName": "EuroMail",
"serviceId": "mail",
"serviceName": "Transactional Email",
"version": 1,
"syncPubKeyDomain": "euromail.dev",
"syncRedirectDomain": "euromail.dev",
"description": "Configure DKIM signing, SPF authorization, and bounce handling for EuroMail transactional email delivery.",
"logoUrl": "https://euromail.dev/static/favicon.svg",
"variableDescription": "subdomain: Sending subdomain prefix (default: em). dkimKey: DKIM public key for email signing.",
"records": [
{
"type": "TXT",
"host": "euromail._domainkey.%subdomain%",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All host entries have the same %subdomain% suffix. It looks like against Rule 8 where host parameter shall be used instead.

@kerolasa is it worth adding to the linter if all RRs share the same variable as suffix?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is it worth adding to the linter if all RRs share the same variable as suffix?

Feels like this should be an info level message saying something like: all records use the same %variable% as suffix, consider using host parameter instead

Let me spend a moment making that happen.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1
I updated wiki text a bit

"ttl": 3600,
"data": "v=DKIM1; k=rsa; p=%dkimKey%",
"txtConflictMatchingMode": "Prefix",
"txtConflictMatchingPrefix": "v=DKIM1"
},
{
"type": "SPFM",
"host": "%subdomain%",
"ttl": 3600,
"spfRules": "include:spf.euromail.dev"
},
{
"type": "MX",
"host": "%subdomain%",
"pointsTo": "bounce.euromail.dev",
"ttl": 3600,
"priority": 10
}
]
}
Loading