diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/lib-storage/index/imapc/imapc-settings.h	Tue Feb 01 19:05:54 2011 +0200
@@ -0,0 +1,17 @@
+#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