mailsis-utils 0.2.4

Utilities for Mailsis.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Delivery backends for routed email messages.
//!
//! After the router selects a destination for an incoming email, one of the
//! handlers here takes over: writing the message to the filesystem as an
//! `.eml` file, pushing it onto a Redis queue (feature-gated behind `redis`)
//! for downstream consumers, or refusing it outright via the reject handler.

pub mod file_storage;
#[cfg(feature = "redis")]
pub mod redis;
pub mod reject;

pub use file_storage::*;
#[cfg(feature = "redis")]
pub use redis::*;
pub use reject::*;