postcrate-core 0.1.1

Embeddable SMTP capture engine: server, multi-mailbox lifecycle, chaos simulation, SQLite persistence, HTTP API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! SMTP wire protocol implementation.
//!
//! The split keeps each concern in its own file: command parsing, reply
//! writing, EHLO extension advertising, dot-stuffed DATA reader, the
//! session state machine, the accept loop, and the chaos/bounce hooks.

pub mod bounce;
pub mod chaos;
pub mod codec;
pub mod command;
pub mod data_reader;
pub mod extensions;
pub mod listener;
pub mod relay;
pub mod response;
pub mod session;
pub mod tls;