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
//! Scenario inspectors that produce diagnostics about a captured
//! email *after* it's been parsed. None of these touch the network
//! — they're heuristics over the headers + bodies the
//! engine already has on disk.
//!
//! Each inspector returns a small struct so callers can choose
//! which to surface in the UI and how. The HTTP layer exposes them
//! under `/api/v1/messages/:id/scenarios/{spam,links,auth}`.

pub mod auth;
pub mod links;
pub mod list_unsub;
pub mod spam;