samotop 0.13.2

SMTP server and library built on async-std
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub use samotop_core::io::*;

#[cfg(feature = "delivery")]
pub use samotop_delivery::smtp::net as client;

pub mod tls {
    pub use samotop_core::io::tls::*;

    #[cfg(feature = "rust-tls")]
    pub use samotop_with_rustls::*;

    #[cfg(feature = "native-tls")]
    pub use samotop_with_native_tls::*;
}