Displaying 2 results from an estimated 2 matches for "mailbox_open_fast".
2014 Jul 28
2
not able to compile deleted_to_trash Plugin
...);
^
deleted-to-trash-plugin.c:66:13: error: 'struct last_copy_info' has no member named 'src_mailbox_name'
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...
2005 Mar 29
0
Compile Error in current CVS
Had a small error with the current CVS version. It was in deliver.c.
Here's a fix. I'm assuming that adding NULL is correct ;-)
dovecot.2005-03-29/src # diff deliver/deliver.c.orig deliver/deliver.c
86c86
< box = mailbox_open(storage, mailbox, MAILBOX_OPEN_FAST |
---
> box = mailbox_open(storage, mailbox, NULL, MAILBOX_OPEN_FAST |
Here's the symptoms:
deliver.c: In function `save_mail':
deliver.c:87: warning: passing arg 3 of `mailbox_open' makes pointer from integer without a cast
deliver.c:87: error: too few arguments to function...