Skip to content
Open
Changes from 2 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
32 changes: 32 additions & 0 deletions devopstacks.com.email-authentication.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"providerId": "devopstacks.com",
"providerName": "DevOps Stacks",
"serviceId": "email-authentication",
"serviceName": "DevOps Stacks Email Authentication",
"version": 1,
"logoUrl": "https://devopstacks.com/logo.svg",
Copy link
Collaborator

Choose a reason for hiding this comment

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

nit. Is the website OK?

$ curl -vso /dev/null https://devopstacks.com/logo.svg
*   Trying 192.64.119.191:443...
* connect to 192.64.119.191 port 443 failed: No route to host
* Failed to connect to devopstacks.com port 443 after 10184 ms: No route to host
* Closing connection 0

"description": "Configure SPF, DKIM and MX records to authenticate email for your domain.",
"variableDescription": "%dkim_host%: DKIM selector; %dkim_value%: DKIM public key; %spf_value%: SPF rules; %mx%: MX mail server; %mxprio%: MX priority",
"syncPubKeyDomain": "devopstacks.com",
"records": [
{
"type": "CNAME",
"host": "%dkim_host%._domainkey",
"pointsTo": "%dkim_value%",
"ttl": 3600
},
{
"type": "TXT",
"host": "@",
"ttl": 3600,
"data": "%spf_value%"
Copy link
Member

Choose a reason for hiding this comment

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

Why not SPFM?

},
{
"type": "MX",
"host": "@",
"pointsTo": "%mx%",
"ttl": 3600,
"priority": "%mxprio%"
}
]
}