aboutsummaryrefslogtreecommitdiff
path: root/src/mail/mod.rs
blob: 3b0ae73c1d912c51eda878c02f01017601eed47d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use std::convert::TryFrom;
use std::io::Write;

pub mod incoming;
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>,
}

impl<'a> TryFrom<&'a [u8]> for IMF<'a> {
    type Error = ();

    fn try_from(body: &'a [u8]) -> Result<IMF<'a>, ()> {
        eprintln!("---- BEGIN PARSED MESSAGE ----");
        let _ = std::io::stderr().write_all(body);
        eprintln!("---- END PARSED MESSAGE ----");
        let parsed = mail_parser::Message::parse(body).ok_or(())?;
        Ok(Self { raw: body, parsed })
    }
}