aboutsummaryrefslogtreecommitdiff
path: root/src/mail/mod.rs
blob: bbb553ab51d7a7612083bb690559d4310a8b4c60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
pub mod mailbox;
pub mod uidindex;
pub mod unique_ident;
pub mod user;

// Internet Message Format
// aka RFC 822 - RFC 2822 - RFC 5322
pub struct IMF<'a> {
    raw: &'a [u8],
    parsed: mail_parser::Message<'a>,
}