summaryrefslogtreecommitdiffstats
path: root/src/lib-lda/lda-settings.h
blob: 8b0c20983ca09655e834746f54853f0391ef9c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef LDA_SETTINGS_H
#define LDA_SETTINGS_H

struct mail_user_settings;

struct lda_settings {
	const char *hostname;
	const char *rejection_subject;
	const char *rejection_reason;
	const char *deliver_log_format;
	const char *recipient_delimiter;
	const char *lda_original_recipient_header;

	bool quota_full_tempfail;
	bool lda_mailbox_autocreate;
	bool lda_mailbox_autosubscribe;
};

extern const struct setting_parser_info lda_setting_parser_info;

#endif