view src/lib-storage/index/mbox/mbox-settings.h @ 9002:9d0037a997f4 HEAD

Initial commit for config rewrite.
author Timo Sirainen <tss@iki.fi>
date Tue, 27 Jan 2009 18:21:53 -0500
parents
children 4b663b9e63af
line wrap: on
line source

#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;
	unsigned int mbox_min_index_size;
	bool mbox_dirty_syncs;
	bool mbox_very_dirty_syncs;
	bool mbox_lazy_writes;
};

const struct setting_parser_info *mbox_get_setting_parser_info(void);

#endif