view src/lmtp/lmtp-settings.h @ 12480:77d582b2dc51

lmtp: Recent change broke accessing mail_temp_dir. Also when it happened, an error message wasn't always logged.
author Timo Sirainen <tss@iki.fi>
date Mon, 29 Nov 2010 23:58:19 +0000
parents 7a6cf8dae9bf
children d7886c6d9ba5
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;
};

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