diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-03-19 17:44:57 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-03-19 17:44:57 +0300 |
commit | e1250bcf595973ff46cf7766590a1491eddfe60d (patch) | |
tree | ff5ee21edafb21cb434261c6a0f2d2f153850783 /src/cfg_file.y | |
parent | 5f4f8d47039fbc366c4d7e34e4870d7d374c2061 (diff) | |
download | rspamd-e1250bcf595973ff46cf7766590a1491eddfe60d.tar.gz rspamd-e1250bcf595973ff46cf7766590a1491eddfe60d.zip |
* Add functions support to rspamd regexps
* Parse expressions with state machine which allows different kinds of arguments in expressions
* Fix test to accord current data
* Add support of fucntions to regexp module
* Move all regexp logic to separate file, describe its API
* Fix descriptors leakage in surbl module
Diffstat (limited to 'src/cfg_file.y')
-rw-r--r-- | src/cfg_file.y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cfg_file.y b/src/cfg_file.y index 1593c80c9..7e86c3d9f 100644 --- a/src/cfg_file.y +++ b/src/cfg_file.y @@ -5,6 +5,7 @@ #include "config.h" #include "cfg_file.h" #include "main.h" +#include "expressions.h" #include "classifiers/classifiers.h" #include "tokenizers/tokenizers.h" |