/usr/include/dovecot/mail-index-alloc-cache.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #ifndef MAIL_INDEX_ALLOC_CACHE_H
#define MAIL_INDEX_ALLOC_CACHE_H
/* If using in-memory indexes, give index_dir=NULL. */
struct mail_index * ATTR_NULL(1, 2)
mail_index_alloc_cache_get(const char *mailbox_path,
const char *index_dir, const char *prefix);
void mail_index_alloc_cache_unref(struct mail_index **index);
void mail_index_alloc_cache_destroy_unrefed(void);
/* internal: */
void mail_index_alloc_cache_index_opened(struct mail_index *index);
#endif
|