Add DKIM selectors for common PSA software

This commit is contained in:
Corbin 2024-11-04 13:28:19 -05:00
parent 58212611ba
commit 5b079317f8
2 changed files with 10 additions and 1 deletions

View File

@ -5,7 +5,7 @@ A Python script to resolve email-related DNS records for a domain.
Example: Example:
``` ```
$ python email_dns.py cbarts.net $ python email_dns.py contoso.com
{ {
"cbarts.net": { "cbarts.net": {
"mx": [ "mx": [

View File

@ -22,6 +22,15 @@ dkim_selectors = { # <selector>._domainkey.<domain>
'protonmail': [ 'protonmail': [
'protonmail', 'protonmail1', 'protonmail2' 'protonmail', 'protonmail1', 'protonmail2'
], ],
'autotask': [
'autotask'
],
'connectwise psa': [
's318306'
],
'zendesk': [
'zendesk1', 'zendesk2'
],
'sendgrid': [ 'sendgrid': [
'sg', 's1', 'sg2', 's2', 's3' 'sg', 's1', 'sg2', 's2', 's3'
], ],