From 5b079317f87233d0186378bb9920056428495001 Mon Sep 17 00:00:00 2001 From: Corbin Date: Mon, 4 Nov 2024 13:28:19 -0500 Subject: [PATCH] Add DKIM selectors for common PSA software --- README.md | 2 +- email_dns.py | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3dc2293..c4bdbff 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A Python script to resolve email-related DNS records for a domain. Example: ``` -$ python email_dns.py cbarts.net +$ python email_dns.py contoso.com { "cbarts.net": { "mx": [ diff --git a/email_dns.py b/email_dns.py index fcb1125..3f9c9fb 100755 --- a/email_dns.py +++ b/email_dns.py @@ -22,6 +22,15 @@ dkim_selectors = { # ._domainkey. 'protonmail': [ 'protonmail', 'protonmail1', 'protonmail2' ], + 'autotask': [ + 'autotask' + ], + 'connectwise psa': [ + 's318306' + ], + 'zendesk': [ + 'zendesk1', 'zendesk2' + ], 'sendgrid': [ 'sg', 's1', 'sg2', 's2', 's3' ],