view src/auth/userdb-static.h @ 6429:65c69a53a7be HEAD

Replaced my Copyright notices. The year range always ends with 2007 now. My name was replaced with "Dovecot authors". In many cases I didn't really even own the copyright, so this is more correct.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 14:34:22 +0300
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef USERDB_STATIC_H
#define USERDB_STATIC_H

struct userdb_static_template *
userdb_static_template_build(pool_t pool, const char *userdb_name,
			     const char *args);
bool userdb_static_template_isset(struct userdb_static_template *tmpl,
				  const char *key);
bool userdb_static_template_remove(struct userdb_static_template *tmpl,
				   const char *key, const char **value_r);
void userdb_static_template_export(struct userdb_static_template *tmpl,
				   struct auth_request *auth_request);

#endif