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/mailbox.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/mailbox.rs')
-rw-r--r-- | src/mail/mailbox.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mail/mailbox.rs b/src/mail/mailbox.rs index c4fa435..35b681a 100644 --- a/src/mail/mailbox.rs +++ b/src/mail/mailbox.rs @@ -17,7 +17,7 @@ use crate::mail::IMF; use crate::time::now_msec; pub struct Mailbox { - id: UniqueIdent, + pub(super) id: UniqueIdent, mbox: RwLock<MailboxInternal>, } |