noem 0.1.0

Resend mail fetched by different strategies to different places
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::io;

#[derive(thiserror::Error, Debug)]
pub enum StrategyError {
    #[error(transparent)]
    IoError(#[from] io::Error),
    #[error(transparent)]
    TlsError(#[from] async_native_tls::Error),
    #[error(transparent)]
    ImapError(#[from] async_imap::error::Error),
}