summaryrefslogtreecommitdiffstats
path: root/src/imap-urlauth/imap-urlauth-settings.h
blob: c04080e16a8d287b26161188d2a9bca72c196c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef IMAP_URLAUTH_SETTINGS_H
#define IMAP_URLAUTH_SETTINGS_H

struct mail_user_settings;

struct imap_urlauth_settings {
	const char *base_dir;

	bool mail_debug;

	bool verbose_proctitle;

	/* imap_urlauth: */
	const char *imap_urlauth_logout_format;

	const char *imap_urlauth_submit_user;
	const char *imap_urlauth_stream_user;
};

extern const struct imap_urlauth_settings imap_urlauth_default_settings;

extern const struct setting_parser_info imap_urlauth_setting_parser_info;

#endif