aboutsummaryrefslogtreecommitdiff
path: root/src/imap/command/authenticated.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/imap/command/authenticated.rs')
-rw-r--r--src/imap/command/authenticated.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/imap/command/authenticated.rs b/src/imap/command/authenticated.rs
index 4ba4968..f22fcc4 100644
--- a/src/imap/command/authenticated.rs
+++ b/src/imap/command/authenticated.rs
@@ -144,7 +144,9 @@ impl<'a> StateContext<'a> {
res.push(Body::Status(permanent_flags));
Ok((
- Response::ok("Select completed")?.with_body(res),
+ Response::ok("Select completed")?
+ .with_extra_code(Code::ReadWrite)
+ .with_body(res),
flow::Transition::Select(mb),
))
}