diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-12 20:46:55 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-12 20:46:55 +0400 |
commit | ff4871310ff5b269dcd02ea300cf78092860e1d4 (patch) | |
tree | cfa435f5de1dc8efc646a0ca1fc6fd261b2c1aa6 /src/cfg_file.h | |
parent | c4105fc43199d51af271bc24d3345aa57906d973 (diff) | |
download | rspamd-ff4871310ff5b269dcd02ea300cf78092860e1d4.tar.gz rspamd-ff4871310ff5b269dcd02ea300cf78092860e1d4.zip |
* First commit to implement multi-statfile filter system with new learning mechanizm (untested yet)
Diffstat (limited to 'src/cfg_file.h')
-rw-r--r-- | src/cfg_file.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cfg_file.h b/src/cfg_file.h index 7e2dfd413..d15923639 100644 --- a/src/cfg_file.h +++ b/src/cfg_file.h @@ -422,14 +422,17 @@ gboolean get_config_checksum (struct config_file *cfg); void unescape_quotes (gchar *line); GList* parse_comma_list (memory_pool_t *pool, gchar *line); -struct classifier_config* check_classifier_cfg (struct config_file *cfg, struct classifier_config *c); +struct classifier_config* check_classifier_conf (struct config_file *cfg, struct classifier_config *c); struct worker_conf* check_worker_conf (struct config_file *cfg, struct worker_conf *c); struct metric* check_metric_conf (struct config_file *cfg, struct metric *c); +struct statfile* check_statfile_conf (struct config_file *cfg, struct statfile *c); gboolean parse_normalizer (struct config_file *cfg, struct statfile *st, const gchar *line); gboolean read_xml_config (struct config_file *cfg, const gchar *filename); gboolean check_modules_config (struct config_file *cfg); void insert_classifier_symbols (struct config_file *cfg); +struct classifier_config* find_classifier_conf (struct config_file *cfg, const gchar *name); + #endif /* ifdef CFG_FILE_H */ /* * vi:ts=4 |