#ifndef LMTP_SETTINGS_H
#define LMTP_SETTINGS_H
struct lda_settings;
struct lmtp_settings;
/* <settings checks> */
enum lmtp_hdr_delivery_address {
};
/* </settings checks> */
struct lmtp_settings {
bool lmtp_proxy;
bool lmtp_rcpt_check_quota;
unsigned int lmtp_user_concurrency_limit;
const char *lmtp_hdr_delivery_address;
const char *login_greeting;
const char *login_trusted_networks;
};
extern const struct setting_parser_info lmtp_setting_parser_info;
struct lmtp_settings **lmtp_set_r,
struct lda_settings **lda_set_r);
#endif