#[non_exhaustive]pub struct EmailAuth {
pub dkim: Option<String>,
pub dkim_domain: Option<String>,
pub dkim_signature: Option<String>,
pub dmarc: Option<String>,
pub dmarc_override: Option<String>,
pub dmarc_policy: Option<String>,
pub spf: Option<String>,
}Expand description
Email Authentication
The Email Authentication object describes the Sender Policy Framework (SPF), DomainKeys Identified Mail (DKIM) and Domain-based Message Authentication, Reporting and Conformance (DMARC) attributes of an email.
[] Category: | Name: email_auth
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dkim: Option<String>DKIM Status
The DomainKeys Identified Mail (DKIM) status of the email.
recommended
dkim_domain: Option<String>DKIM Domain
The DomainKeys Identified Mail (DKIM) signing domain of the email.
recommended
dkim_signature: Option<String>DKIM Signature
The DomainKeys Identified Mail (DKIM) signature used by the sending/receiving system.
recommended
dmarc: Option<String>DMARC Status
The Domain-based Message Authentication, Reporting and Conformance (DMARC) status of the email.
recommended
dmarc_override: Option<String>DMARC Override
The Domain-based Message Authentication, Reporting and Conformance (DMARC) override action.
recommended
dmarc_policy: Option<String>DMARC Policy
The Domain-based Message Authentication, Reporting and Conformance (DMARC) policy status.
recommended
spf: Option<String>SPF Status
The Sender Policy Framework (SPF) status of the email.
recommended