mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-08-01 13:12:18 +00:00
13 lines
516 B
Python
13 lines
516 B
Python
__version__ = "10.2.4"
|
|
|
|
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")
|