Mercurial > dovecot > core-2.2
view src/config/config-parser.h @ 22656:1789bf2a1e01
director: Make sure HOST-RESET-USERS isn't used with max_moving_users=0
The reset command would just hang in that case. doveadm would never have
sent this, so this is just an extra sanity check.
author | Timo Sirainen <timo.sirainen@dovecot.fi> |
---|---|
date | Sun, 05 Nov 2017 23:51:56 +0200 |
parents | 680f59741e5e |
children |
line wrap: on
line source
#ifndef CONFIG_PARSER_H #define CONFIG_PARSER_H #define CONFIG_MODULE_DIR MODULEDIR"/settings" #define IS_WHITE(c) ((c) == ' ' || (c) == '\t') struct config_module_parser { const struct setting_parser_info *root; struct setting_parser_context *parser; void *settings; }; ARRAY_DEFINE_TYPE(config_module_parsers, struct config_module_parser *); extern struct config_module_parser *config_module_parsers; extern struct config_filter_context *config_filter; extern struct module *modules; int config_parse_net(const char *value, struct ip_addr *ip_r, unsigned int *bits_r, const char **error_r); int config_parse_file(const char *path, bool expand_values, const char *const *modules, const char **error_r) ATTR_NULL(3); void config_parse_load_modules(void); bool config_module_want_parser(struct config_module_parser *parsers, const char *const *modules, const struct setting_parser_info *root) ATTR_NULL(2); void config_parser_deinit(void); #endif