Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hauberk.app template #553

Merged
merged 11 commits into from
Aug 29, 2024
55 changes: 55 additions & 0 deletions hauberk.app.domain-verification.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"providerId": "hauberk.app",
"providerName": "Hauberk",
"serviceId": "domain-verification",
"serviceName": "Hauberk Domain Verification",
"version": 1,
"logoUrl": "https://assets.hauberk.app/hauberkLogo.svg",
"syncPubKeyDomain": "hauberk.app",
"description": "Configures DNS records for Hauberk domain verification",
"variableDescription": "unique is randomly generated for use in the username part of the dmarc rua email address; publicKey is a cryptographic signature for signing DKIM; region is an AWS region.",
"syncBlock": false,
"syncRedirectDomain": "hauberk.app",
"records": [
{
"groupId": "outbound",
"type": "MX",
"host": "send",
"pointsTo": "feedback-smtp.%region%.amazonses.com",
"priority": 10,
"ttl": 300
},
{
"groupId": "outbound",
"type": "SPFM",
"host": "send",
"spfRules": "include:amazonses.com"
},
{
"groupId": "outbound",
"type": "TXT",
"host": "hauberk._domainkey",
"data": "%publicKey%",
"ttl": 300
},
{
"groupId": "outbound",
"type": "TXT",
"host": "_dmarc.%domain%.",
pawel-kow marked this conversation as resolved.
Show resolved Hide resolved
"data": "v=DMARC1; p=%policy%; rua=mailto:%unique%@dmarc-reports.hauberk.app",
"ttl": 300,
"txtConflictMatchingMode": "Prefix",
"txtConflictMatchingPrefix": "v=DMARC1",
"essential": "OnApply"
},
{
"groupId": "inbound",
"type": "MX",
"host": "@",
"pointsTo": "inbound-smtp.%region%.amazonaws.com",
"priority": 10,
"ttl": 300,
"essential": "OnApply"
}
]
}
Loading