aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua/lua_classifier.c
Commit message (Collapse)AuthorAgeFilesLines
* * More things to be thread-safe:Vsevolod Stakhov2012-02-131-0/+6
| | | | | | | - pool allocator is now thread-safe - lua subsystem now holds lock to avoid lua stack corruption - events subsystem now using conditional variables to wait for async_threads - insert_result is thread-safe now
* Fix stupid bug with lua stack corruption.Vsevolod Stakhov2011-10-141-1/+0
|
* Fix critical bug with lua stack cleaning that caused heavy memory leaks.0.4.3Vsevolod Stakhov2011-08-121-3/+4
| | | | Update to 0.4.3.
* * Fix build under CentOS 5 with old glib 2.12Vsevolod Stakhov2011-07-291-2/+2
| | | | | * Fix build of rspamd with CMAKE_BINARY_DIR differs from CMAKE_SOURCE_DIR Rework include style.
* Add workaround for clang under linux.Vsevolod Stakhov2011-07-211-2/+2
| | | | Fix problems found by static analyzing.
* Fix statfiles class determination euristic.Vsevolod Stakhov2011-07-181-9/+9
| | | | Fix call of classifier pre-callback.
* Create statfiles using learn_spam function for bayes classifier.Vsevolod Stakhov2011-07-181-1/+1
| | | | Fix call of pre callbacks for a classifier.
* * First commit to implement multi-statfile filter system with new learning ↵Vsevolod Stakhov2011-07-121-28/+150
| | | | mechanizm (untested yet)
* 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.
* * Introduce new logging system:Vsevolod Stakhov2009-12-221-2/+2
| | | | | | | | | - independent and customizeable buffering - line buffering - errors handling support - custom (ip based) debug - append function name automaticaly (based on __FUNCTION__) - add some logic to logs system
* * Implement pre and post classify callbacks for checking specific statfiles ↵Vsevolod Stakhov2009-12-161-0/+257
for this task TODO: - add properties to get all parameters of input task - add properties to statfile object - add some normalization function for calling from classify process - document changes