aboutsummaryrefslogtreecommitdiffstats
path: root/src/expressions.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix several potential problems found by static analysis.Vsevolod Stakhov2013-05-241-1/+1
|
* * Rework thread pools locking logic to avoid global lua mutex usage.Vsevolod Stakhov2012-08-221-1/+3
| | | | | | Fixed several memory leaks with modern glib. Fixed memory leak in dkim code. Fixed a problem with static global variables in shared libraries.
* * Add new lua module regexp for using glib regular expressions (pcre compatible)Vsevolod Stakhov2011-02-151-2/+8
|
* Fixes types (use glib ones) no functional change.Vsevolod Stakhov2010-10-061-9/+9
| | | | | Now all comments in commit logs beginning with '*' would be included in changelog, so important changes would be separated from small ones.
* * Add ability to test regexp with 'T' flagVsevolod Stakhov2010-07-061-0/+1
| | | | | | | * Write more code for DNS resolver: - initial RR parser - name compression - replies handler
* * Fix config reloadingVsevolod Stakhov2010-05-131-2/+2
| | | | | * Add ability to register variables in memory pools (hash with known lifetime) * Avoid of using of some global variables
* * Add classifiers and composites sections to dumpVsevolod Stakhov2010-04-061-0/+1
|
* * Add ability to register rspamd functions from LUAVsevolod Stakhov2009-10-131-2/+2
| | | | | | * Add ability to access recipients list and sender information * Add plugin for checking forged recipients and sender * Sync documentation
* * Fix error in regexps results hashingVsevolod Stakhov2009-05-041-2/+2
|
* * Another fix to regexps parserVsevolod Stakhov2009-04-231-1/+7
|
* * Fix regexp_match_number functionVsevolod Stakhov2009-04-231-0/+1
|
* * Fix expression parser: make it recursive and allow expressions inside ↵Vsevolod Stakhov2009-04-231-1/+10
| | | | | | function's arguments * Rewrite functions interface and implement arguments parsing
* * Add raw mode flag for improving performance by avoiding expensive utf8 ↵Vsevolod Stakhov2009-04-211-1/+1
| | | | | | transforms * Improve FreeBSD start script by adding config test precmd
* * Add per-task regexp results cache, that would optimize regexp engine ↵Vsevolod Stakhov2009-04-051-0/+16
| | | | | | performance by avoiding multiply match of the same regexp
* * Make regexp cache functions public for using them in other placesVsevolod Stakhov2009-03-291-0/+14
| | | | | * Add function regexp_match_number that checks number of matched arguments: e.g.: regexp_match_number(2, ${__RE1}, ${__RE2}, header_exists(Subject))
* * Add ability for plugins to register its own functions in expression's parserVsevolod Stakhov2009-03-281-0/+8
|
* * Add functions support to rspamd regexpsVsevolod Stakhov2009-03-191-0/+69
* 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