mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-05-20 19:05:24 +00:00
397378de8e
Addresses RuntimeError: Event loop is closed in the MS Graph mailbox backend (#742). Co-authored-by: Sean Whalen <seanthegeek@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
516 B
Python
13 lines
516 B
Python
__version__ = "9.11.1"
|
|
|
|
USER_AGENT = f"parsedmarc/{__version__}"
|
|
|
|
DEFAULT_DNS_TIMEOUT = 2.0
|
|
DEFAULT_DNS_MAX_RETRIES = 0
|
|
# Recommended mix of public resolvers for cross-provider DNS failover. Not
|
|
# applied automatically — callers opt in by passing
|
|
# ``nameservers=RECOMMENDED_DNS_NAMESERVERS``. Mixing providers means a single
|
|
# operator's anycast outage or authoritative-server incompatibility falls
|
|
# through to a different provider within one resolve() call.
|
|
RECOMMENDED_DNS_NAMESERVERS = ("1.1.1.1", "8.8.8.8")
|