view src/auth/userdb-template.h @ 22614:cf66220d281e

doveadm proxy: Don't crash if remote doesn't support log proxying
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sat, 14 Oct 2017 12:54:18 +0300
parents 60f3d0b8900d
children
line wrap: on
line source

#ifndef USERDB_TEMPLATE_H
#define USERDB_TEMPLATE_H

struct userdb_template *
userdb_template_build(pool_t pool, const char *userdb_name, const char *args);
void userdb_template_export(struct userdb_template *tmpl,
			    struct auth_request *auth_request);
bool userdb_template_remove(struct userdb_template *tmpl,
			    const char *key, const char **value_r);
bool userdb_template_is_empty(struct userdb_template *tmpl);

#endif