diff options
Diffstat (limited to 'src/imap/command/authenticated.rs')
-rw-r--r-- | src/imap/command/authenticated.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/imap/command/authenticated.rs b/src/imap/command/authenticated.rs index 32a8e1e..7f6531c 100644 --- a/src/imap/command/authenticated.rs +++ b/src/imap/command/authenticated.rs @@ -167,8 +167,13 @@ impl<'a> AuthenticatedContext<'a> { } } + let msg = if is_lsub { + "LSUB completed" + } else { + "LIST completed" + }; Ok(( - Response::ok("LIST completed")?.with_body(ret), + Response::ok(msg)?.with_body(ret), flow::Transition::None, )) } |