diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-08-25 19:38:18 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-08-25 19:38:18 +0400 |
commit | 671bbfa9cc85a625df33d6384a3179ce076765b9 (patch) | |
tree | ac77b0439bc08ce896b614e1a95641878d35d807 /src/cfg_file.h | |
parent | 331f6807e9ef813755f8ec197cc24915c458a684 (diff) | |
download | rspamd-671bbfa9cc85a625df33d6384a3179ce076765b9.tar.gz rspamd-671bbfa9cc85a625df33d6384a3179ce076765b9.zip |
* Add post filters to lua API - filters that would be called after all message's processing
* Add ability to check for specified symbol in task results from lua
* Add ability to check for metric's results from lua
* Add ability to learn specified statfile form lua
Diffstat (limited to 'src/cfg_file.h')
-rw-r--r-- | src/cfg_file.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cfg_file.h b/src/cfg_file.h index b2ca61150..d770c237e 100644 --- a/src/cfg_file.h +++ b/src/cfg_file.h @@ -289,6 +289,7 @@ struct config_file { GHashTable *classifiers_symbols; /**< hashtable indexed by symbol name of classifiers */ GHashTable* cfg_params; /**< all cfg params indexed by its name in this structure */ GList *views; /**< views */ + GList *post_filters; /**< list of post-processing lua filters */ GHashTable* domain_settings; /**< settings per-domains */ GHashTable* user_settings; /**< settings per-user */ gchar* domain_settings_str; /**< string representation of settings */ |