Skip to main content

mailsis_utils/transformers/
mod.rs

1//! Built-in email transformations applied before delivery.
2//!
3//! Each transformer runs in the SMTP pipeline between message reception
4//! and routing, enriching or normalizing the email. Currently supports
5//! `Message-ID` header injection and SPF/DKIM/DMARC verification
6//! (feature-gated behind `email-auth`).
7
8#[cfg(feature = "email-auth")]
9pub mod email_auth;
10pub mod message_id;
11
12#[cfg(feature = "email-auth")]
13pub use email_auth::*;
14pub use message_id::*;