diff options
Diffstat (limited to 'src/imap/command/examined.rs')
-rw-r--r-- | src/imap/command/examined.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/imap/command/examined.rs b/src/imap/command/examined.rs index aad7874..91ad950 100644 --- a/src/imap/command/examined.rs +++ b/src/imap/command/examined.rs @@ -1,3 +1,5 @@ +use std::sync::Arc; + use anyhow::Result; use boitalettres::proto::Request; use boitalettres::proto::Response; @@ -15,7 +17,7 @@ use crate::mail::user::User; pub struct ExaminedContext<'a> { pub req: &'a Request, - pub user: &'a User, + pub user: &'a Arc<User>, pub mailbox: &'a mut MailboxView, } |