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

dmarc/dkim entries for the professionalmail product #568

Merged
merged 12 commits into from
Nov 9, 2024
28 changes: 26 additions & 2 deletions godaddy.com.professional_mail.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"providerName": "GoDaddy",
"serviceId": "professional_mail",
"serviceName": "Professional Mail",
"version": 2,
"version": 3,
"logoUrl": "https://www.domainconnect.org/wp-content/uploads/2020/02/godaddy_logo_new.png",
"description": "Enables a domain to work with GoDaddy Professional Mail",
"variableDescription": "txtValue - txt record data value",
"variableDescription": "txtValue - txt verification record data value, dmarcPolicy - the dmarc policy definition, sel1/2 - the selector name. dkimCname1/2 - the target zone for dkim selector",
"syncPubKeyDomain": "domain-attach.api.godaddy.com",
"records": [
{
Expand Down Expand Up @@ -56,6 +56,30 @@
"host": "@",
"data": "%txtValue%",
"ttl": 3600
},
{
"groupId": "dmarc",
"type": "TXT",
"essential": "OnApply",
"txtConflictMatchingMode": "Prefix",
"txtConflictMatchingPrefix": "v=DMARC1;",
"host": "_dmarc",
"data": "%dmarcPolicy%",
"ttl": 3600
},
{
"groupId": "dkim",
"type": "CNAME",
"host": "%sel1%._domainkey",
"pointsTo": "%dkimCname1%",
"ttl": 3600
},
{
"groupId": "dkim",
"type": "CNAME",
"host": "%sel2%._domainkey",
"pointsTo": "%dkimCname2%",
"ttl": 3600
}
]
}
29 changes: 26 additions & 3 deletions secureserver.net.professional_mail.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"providerName": "SecureServer",
"serviceId": "professional_mail",
"serviceName": "Professional Mail",
"version": 2,
"version": 3,
"description": "Enables a domain to work with Whitelabel Professional Mail",
"shared": true,
"sharedProviderName": true,
"variableDescription": "txtValue - txt record data value",
"variableDescription": "txtValue - txt verification record data value, dmarcPolicy - the dmarc policy definition, sel1/2 - the selector name. dkimCname1/2 - the target zone for dkim selector",
"syncPubKeyDomain": "domain-attach.api.godaddy.com",
"records": [
{
Expand Down Expand Up @@ -53,11 +53,34 @@
},
{
"groupId": "verification",
"groupId": "txt",
"type": "TXT",
"host": "@",
"data": "%txtValue%",
"ttl": 3600
},
{
"groupId": "dmarc",
"type": "TXT",
"essential": "OnApply",
"txtConflictMatchingMode": "Prefix",
"txtConflictMatchingPrefix": "v=DMARC1;",
"host": "_dmarc",
"data": "%dmarcPolicy%",
"ttl": 3600
},
{
"groupId": "dkim",
"type": "CNAME",
"host": "%sel1%._domainkey",
"pointsTo": "%dkimCname1%",
"ttl": 3600
},
{
"groupId": "dkim",
"type": "CNAME",
"host": "%sel2%._domainkey",
"pointsTo": "%dkimCname2%",
"ttl": 3600
}
]
}
Loading