2022-06-29 11:16:58 +00:00
|
|
|
pub mod mailbox;
|
2022-06-29 13:39:54 +00:00
|
|
|
pub mod uidindex;
|
2022-06-29 13:52:09 +00:00
|
|
|
pub mod unique_ident;
|
2022-06-29 11:41:05 +00:00
|
|
|
pub mod user;
|
2022-06-27 14:56:20 +00:00
|
|
|
|
2022-06-28 08:49:28 +00:00
|
|
|
// Internet Message Format
|
|
|
|
// aka RFC 822 - RFC 2822 - RFC 5322
|
2022-06-29 13:39:54 +00:00
|
|
|
pub struct IMF<'a> {
|
|
|
|
raw: &'a [u8],
|
|
|
|
parsed: mail_parser::Message<'a>,
|
|
|
|
}
|