view src/lmtp/lmtp-settings.h @ 12486:d7886c6d9ba5

lmtp: Added lmtp_save_to_detail_mailbox setting.
author Timo Sirainen <tss@iki.fi>
date Tue, 30 Nov 2010 22:38:05 +0000
parents 77d582b2dc51
children 05434bef2492
line wrap: on
line source

#ifndef LMTP_SETTINGS_H
#define LMTP_SETTINGS_H

struct lda_settings;
struct lmtp_settings;

struct lmtp_settings {
	bool lmtp_proxy;
	bool lmtp_save_to_detail_mailbox;
};

extern const struct setting_parser_info lmtp_setting_parser_info;

void lmtp_settings_dup(const struct setting_parser_context *set_parser,
		       pool_t pool,
		       const struct lmtp_settings **lmtp_set_r,
		       const struct lda_settings **lda_set_r);

#endif