view src/lib-storage/index/imapc/imapc-settings.h @ 12625:495fb0e9f7cc

imapc: Moved settings from plugin {} section to proper imapc_* settings.
author Timo Sirainen <tss@iki.fi>
date Tue, 01 Feb 2011 19:05:54 +0200
parents
children 87662d9ceff8
line wrap: on
line source

#ifndef IMAPC_SETTINGS_H
#define IMAPC_SETTINGS_H

struct imapc_settings {
	const char *imapc_host;
	unsigned int imapc_port;

	const char *imapc_user;
	const char *imapc_password;

	const char *imapc_ssl;
	const char *imapc_ssl_ca_dir;
};

const struct setting_parser_info *imapc_get_setting_parser_info(void);

#endif