Displaying 3 results from an estimated 3 matches for "mailbox_open_keep_rec".
2014 Jul 28
2
not able to compile deleted_to_trash Plugin
...last_copy.src_mailbox_name = NULL;
^
deleted-to-trash-plugin.c: In function 'mailbox_open_or_create':
deleted-to-trash-plugin.c:79:43: error: 'MAILBOX_OPEN_FAST' undeclared (first use in this function)
box = mailbox_open(&storage, name, NULL, MAILBOX_OPEN_FAST | MAILBOX_OPEN_KEEP_RECENT | MAILBOX_OPEN_NO_INDEX_FILES);
^
deleted-to-trash-plugin.c:79:63: error: 'MAILBOX_OPEN_KEEP_RECENT' undeclared (first use in this function)
box = mailbox_open(&storage, name, NULL, MAILBOX_OPEN_FAST | MAILBOX_OPEN_KEEP_RECENT | MAILBOX_OP...
2004 Sep 04
1
1.0-test39
http://dovecot.org/test/
Fixes several crashes. Apparently can still break with mboxes, although
it works with me..
-------------- next part --------------
A non-text attachment was scrubbed...
Name: PGP.sig
Type: application/pgp-signature
Size: 186 bytes
Desc: This is a digitally signed message part
URL:
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...ient->mailbox);
+ cfctx.storage = ctx->cmd->client->mailbox->storage;
+ } else
+ return catenate_fetch_cleanup(&cfctx, FALSE,
+ "no mailbox specified or selected");
+ cfctx.box = mailbox_open(&cfctx.storage, cfctx.mailbox, NULL,
+ MAILBOX_OPEN_READONLY | MAILBOX_OPEN_KEEP_RECENT);
+ if (cfctx.box == NULL)
+ return catenate_fetch_cleanup(&cfctx, FALSE,
+ "can't open mailbox");
+
+ /* verify uidvalidity */
+ if (mailbox_sync(cfctx.box,
+ MAILBOX_SYNC_FLAG_FULL_READ | MAILBOX_SYNC_FLAG_FAST,
+ STATUS_UIDVALIDITY, &status) < 0 ||
+...