/usr/include/dovecot/mbox-settings.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 16 17 18 | #ifndef MBOX_SETTINGS_H
#define MBOX_SETTINGS_H
struct mbox_settings {
const char *mbox_read_locks;
const char *mbox_write_locks;
unsigned int mbox_lock_timeout;
unsigned int mbox_dotlock_change_timeout;
uoff_t mbox_min_index_size;
bool mbox_dirty_syncs;
bool mbox_very_dirty_syncs;
bool mbox_lazy_writes;
const char *mbox_md5;
};
const struct setting_parser_info *mbox_get_setting_parser_info(void);
#endif
|