Displaying 2 results from an estimated 2 matches for "client_parse_mail_flags".
2005 Nov 18
1
How to disable keywords?
Hi,
is there a quick way to disable keyword feature in dovecot?
Thanks, Sebastjan
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
..._nonsync_literal(ctx->save_parser);
+
+ if (ctx->failed)
+ return catenate_cancel(ctx, nonsync);
+
+ /* [<flags>] */
+ if (args->type == IMAP_ARG_LIST) {
+ const struct imap_arg *flags_list = IMAP_ARG_LIST_ARGS(args);
+ const char *const *keywords_list = NULL;
+ ++args;
+
+ if (!client_parse_mail_flags(cmd, flags_list,
+ &flags, &keywords_list))
+ return catenate_cancel(ctx, nonsync);
+ if (keywords_list != NULL &&
+ mailbox_keywords_create(ctx->box, keywords_list,
+ &keywords) < 0) {
+ client_send_storage_error(cmd, ctx->storage);
+ retur...