added NAMESPACE capability
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -23,6 +23,6 @@ imap4d_capability (struct imap4d_command *command, char *arg) | ... | @@ -23,6 +23,6 @@ imap4d_capability (struct imap4d_command *command, char *arg) |
23 | (void)arg; | 23 | (void)arg; |
24 | if (! (command->states & state)) | 24 | if (! (command->states & state)) |
25 | return util_finish (command, RESP_BAD, "Wrong state"); | 25 | return util_finish (command, RESP_BAD, "Wrong state"); |
26 | util_out (RESP_NONE, "CAPABILITY IMAP4rev1"); | 26 | util_out (RESP_NONE, "CAPABILITY IMAP4rev1 NAMESPACE"); |
27 | return util_finish (command, RESP_OK, "Completed"); | 27 | return util_finish (command, RESP_OK, "Completed"); |
28 | } | 28 | } | ... | ... |
-
Please register or sign in to post a comment