emailsec.config

 1from dataclasses import dataclass
 2
 3
 4@dataclass
 5class AuthenticationConfiguration:
 6    """Configuration items to tweak the authentication behavior."""
 7
 8    trusted_arc_signers: list[str] | None = None
 9    """Trusted ARC signers that will enable overriding DMARC results with the
10    authentication results from ARC.
11    """
@dataclass
class AuthenticationConfiguration:
 5@dataclass
 6class AuthenticationConfiguration:
 7    """Configuration items to tweak the authentication behavior."""
 8
 9    trusted_arc_signers: list[str] | None = None
10    """Trusted ARC signers that will enable overriding DMARC results with the
11    authentication results from ARC.
12    """

Configuration items to tweak the authentication behavior.

AuthenticationConfiguration(trusted_arc_signers: list[str] | None = None)
trusted_arc_signers: list[str] | None = None

Trusted ARC signers that will enable overriding DMARC results with the authentication results from ARC.