rmilter 0.1.0

A rust-only crate for connecting and using milter functionality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Defines the accept/reject actions that the milter returns for each step during the processing
/// flow.
pub enum AcceptRejectAction {
    /// Accept the message without further processing
    Accept,
    /// Continue processing the message
    Continue,
    /// Silently discard the message without further processing
    Discard,
    /// Reject the message without further processing
    Reject,
    /// Temporarily fail without further processing
    Tempfail,
    // TODO ReplyCode
}