diff options
author | Alex Auvolat <alex@adnab.me> | 2022-06-30 17:40:59 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-06-30 17:40:59 +0200 |
commit | 2c61af6684c44e3558cc808c6b319bc9706adb00 (patch) | |
tree | d8828a6faed5c42665ed9a1732cb284ff045a3b7 /src/mail/mod.rs | |
parent | 484ad97b65ba2295aadd9cf7eaf865573b859a10 (diff) | |
download | aerogramme-2c61af6684c44e3558cc808c6b319bc9706adb00.tar.gz aerogramme-2c61af6684c44e3558cc808c6b319bc9706adb00.zip |
More work on incoming mails, but no mails yet
Diffstat (limited to 'src/mail/mod.rs')
-rw-r--r-- | src/mail/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mail/mod.rs b/src/mail/mod.rs index 94a1712..b6054b0 100644 --- a/src/mail/mod.rs +++ b/src/mail/mod.rs @@ -1,10 +1,10 @@ use std::convert::TryFrom; +pub mod incoming; pub mod mailbox; pub mod uidindex; pub mod unique_ident; pub mod user; -pub mod incoming; // Internet Message Format // aka RFC 822 - RFC 2822 - RFC 5322 |