auth-settings.c revision 2024157e8de36edd31f5fd72f5ea7364a0955fa7
/* Copyright (c) 2005-2009 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "array.h"
#include "settings-parser.h"
#include "master-service-settings.h"
#include "auth-settings.h"
#include <stddef.h>
extern struct setting_parser_info auth_setting_parser_info;
extern struct setting_parser_info auth_root_setting_parser_info;
static struct setting_define auth_passdb_setting_defines[] = {
};
};
static struct setting_define auth_userdb_setting_defines[] = {
};
};
/* we're kind of kludging here to avoid "auth_" prefix in the struct fields */
static struct setting_define auth_setting_defines[] = {
};
static struct auth_settings auth_default_settings = {
MEMBER(cache_size) 0,
};
struct setting_parser_info auth_setting_parser_info = {
};
/* <settings checks> */
const char **error_r ATTR_UNUSED)
{
if (set->debug_passwords)
return TRUE;
}
/* </settings checks> */
struct auth_settings *
{
static const struct setting_parser_info *set_roots[] = {
};
const char *error;
void **sets;
return sets[0];
}