Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixes to fuzzy_check module. | Vsevolod Stakhov | 2013-12-06 | 1 | -3/+7 |
| | | | | | | - Use more smart normalizing by multiplying value to e for tanh function. - Do not print the full fuzzy hash in the log output. - Log a proper command in fuzzy controller command. | ||||
* | Refactor metric actions handling. | Vsevolod Stakhov | 2013-09-13 | 1 | -13/+16 |
| | | | | | | Use array of actions instead of a linked list to speed up processing. * Removed required_score, reject_score and action in metric config, now REJECT is the only default action for a metric. | ||||
* | More fixes to skipped tasks processing. | Vsevolod Stakhov | 2013-09-11 | 1 | -0/+1 |
| | |||||
* | Correctly process skipped messages. | Vsevolod Stakhov | 2013-09-11 | 1 | -8/+4 |
| | |||||
* | Add saving of actions, symbols and maps. | Vsevolod Stakhov | 2013-01-09 | 1 | -3/+3 |
| | |||||
* | * Use murmur hash for all hashes as it is more efficient and provides more ↵ | Vsevolod Stakhov | 2012-10-08 | 1 | -1/+1 |
| | | | | | | uniform distribution as glib's default one. * Fix probability renormalization while using advanced classification. | ||||
* | Another debian license fix. | Vsevolod Stakhov | 2012-09-10 | 1 | -1/+1 |
| | | | | | Add apache license for regexp that were delivered from SpamAssassin project. Fix debian/copyright for src/dns.c. | ||||
* | Update copyright (required by debian). | Vsevolod Stakhov | 2012-09-04 | 1 | -3/+3 |
| | |||||
* | * Rework thread pools locking logic to avoid global lua mutex usage. | Vsevolod Stakhov | 2012-08-22 | 1 | -6/+28 |
| | | | | | | Fixed several memory leaks with modern glib. Fixed memory leak in dkim code. Fixed a problem with static global variables in shared libraries. | ||||
* | * Allow to use other composites inside a composite's expression | Vsevolod Stakhov | 2012-06-14 | 1 | -4/+56 |
| | | | | Fix for cmake 2.6. | ||||
* | More fixes to thread-safe processing. | Vsevolod Stakhov | 2012-02-14 | 1 | -0/+17 |
| | |||||
* | * More things to be thread-safe: | Vsevolod Stakhov | 2012-02-13 | 1 | -0/+17 |
| | | | | | | | - 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 | ||||
* | Fixes to threading (still incomplete). | Vsevolod Stakhov | 2012-01-31 | 1 | -0/+20 |
| | |||||
* | Fix critical bug with events checking during filters processing. | Vsevolod Stakhov | 2012-01-31 | 1 | -0/+1 |
| | |||||
* | More cleanups and fixes for compiler warnings.0.4.6 | Vsevolod Stakhov | 2011-12-20 | 1 | -3/+3 |
| | |||||
* | * Finally get rid of stupid savepoints system and migrate to async events ↵ | Vsevolod Stakhov | 2011-12-14 | 1 | -53/+2 |
| | | | | | | logic completely Fix lua redis library. | ||||
* | Insert symbols counting their weights with respect to grow_factor. | Vsevolod Stakhov | 2011-08-17 | 1 | -1/+2 |
| | |||||
* | Make hash traversing more safe by using reference count. | Vsevolod Stakhov | 2011-08-05 | 1 | -2/+2 |
| | | | | Update to 0.4.2 | ||||
* | * Fix build under CentOS 5 with old glib 2.12 | Vsevolod Stakhov | 2011-07-29 | 1 | -0/+2 |
| | | | | | * Fix build of rspamd with CMAKE_BINARY_DIR differs from CMAKE_SOURCE_DIR Rework include style. | ||||
* | Fix very bad bug in a memory pool allocator. | Vsevolod Stakhov | 2011-07-26 | 1 | -19/+3 |
| | | | | Speed up inserting symbols by hashing them. | ||||
* | * Add start script for red hat compatible systems | Vsevolod Stakhov | 2011-07-20 | 1 | -35/+2 |
| | | | | | | | Add descriptions for some rspamd API functions (no functional changes). --HG-- rename : linux/rspamd => linux/rspamd_debian.in | ||||
* | * Add learn_spam/learn_ham interface to librspamdclient and to rspamc | Vsevolod Stakhov | 2011-07-14 | 1 | -2/+2 |
| | | | | | * Improve logic of io dispatcher restoration Remove correction factor from bayes as it leads to classify errors. | ||||
* | Change logic of params inside compare parts distance. | Vsevolod Stakhov | 2011-07-14 | 1 | -9/+49 |
| | | | | | During learning and classifying compare parts using new algorithm. Raise similarity factor. | ||||
* | * First commit to implement multi-statfile filter system with new learning ↵ | Vsevolod Stakhov | 2011-07-12 | 1 | -0/+83 |
| | | | | mechanizm (untested yet) | ||||
* | Fix phishing detection with img flag. | Vsevolod Stakhov | 2011-07-11 | 1 | -10/+17 |
| | | | | | | Handle unclosed HTML tags properly. Remove warnings for types on 32 bit archs. Do not touch grow factor many times when one shot mode is turned on. | ||||
* | * Improve performance of settings lookup | Vsevolod Stakhov | 2011-06-30 | 1 | -2/+5 |
| | |||||
* | * Add correcting factor to statistics. | Vsevolod Stakhov | 2011-06-28 | 1 | -3/+27 |
| | | | | | | Now learning increments version of a statfile. Avoid learning and classifying of similar text parts if a message has 2 text parts. Several fixes to statistics. | ||||
* | * Welcome 0.4.0 | Vsevolod Stakhov | 2011-06-24 | 1 | -4/+6 |
| | | | | | | | | | | | | | | | | | | Uncompatible changes: - Statistics is uncompatible in utf8 mode Major changes: - Improved utf8 mode - Convert all characters to lowercase in statistics - Skip URL's in statistics - Improve speed of bayes classifier by using integer arithmetics - Fixed statfiles synchronization that was broken for a long time - Synchronization is now configurable Minor changes: - Bugfixes - Removed some of legacy code - Types polishing | ||||
* | Write logbuf safely.0.3.14 | Vsevolod Stakhov | 2011-06-10 | 1 | -1/+1 |
| | |||||
* | * Skip short utf words in statistics | Vsevolod Stakhov | 2011-06-03 | 1 | -3/+5 |
| | |||||
* | * Major cleanup of cmake build system | Vsevolod Stakhov | 2011-05-06 | 1 | -6/+3 |
| | | | | | | * Add initial version of statshow utility for statfiles debugging * Add debugging for statistics * Remove unused utilities | ||||
* | * Add ability to learn rspamd via worker (without password)0.3.11 | Vsevolod Stakhov | 2011-03-31 | 1 | -0/+109 |
| | |||||
* | Fix one shot behaviour. | Vsevolod Stakhov | 2011-03-18 | 1 | -4/+5 |
| | |||||
* | Try to fix memory issues. | Vsevolod Stakhov | 2011-03-02 | 1 | -18/+25 |
| | |||||
* | * Add options section into config to organize options | Vsevolod Stakhov | 2011-02-22 | 1 | -1/+1 |
| | | | | | | | * Add one_shot option for avoiding inserting several results from one rule Fix parsing of headers with \t symbol [1] Reported by: Victor Ustugov [1] | ||||
* | * Add ability to save symbols that are inside composites with '-' flag. | Vsevolod Stakhov | 2011-02-19 | 1 | -4/+18 |
| | | | | | | | Remove warnings from rspamc. Add new rules [1] Submitted by: Victor Ustugov [1] | ||||
* | * Add ability to specify symbols in composites to avoid their weights removing. | Vsevolod Stakhov | 2011-02-18 | 1 | -21/+55 |
| | |||||
* | Remove symbols that are included into a composite when all composites are ↵ | Vsevolod Stakhov | 2011-02-18 | 1 | -2/+23 |
| | | | | processed. | ||||
* | * Add function regexp_occurs_number that allows to test how much occurs of ↵ | Vsevolod Stakhov | 2011-02-18 | 1 | -21/+44 |
| | | | | | | | | | regexp can be found in a message Fix composites logic. [1] Fix composites registration from lua. [1] Reported by: Victor Ustugov [1] | ||||
* | * Add ability to specify 'S' flag to regexp that means that headers checks ↵ | Vsevolod Stakhov | 2011-02-15 | 1 | -1/+1 |
| | | | | | | must be case sensitive * Add lua function message:get_header_strong | ||||
* | Fix bug with several metrics output. [1] | Vsevolod Stakhov | 2011-02-14 | 1 | -1/+1 |
| | | | | | | Install surbl-whitelist. [1] [1] Reported by Victor Ustugov | ||||
* | * Add Subject header to statistics | Vsevolod Stakhov | 2010-12-24 | 1 | -0/+13 |
| | | | | * Write log message about symbols that are removed when composite symbol is inserted | ||||
* | Fixed adding action to metric. | Vsevolod Stakhov | 2010-10-28 | 1 | -1/+3 |
| | |||||
* | Add add_header action to smtp proxy. | Vsevolod Stakhov | 2010-10-26 | 1 | -1/+0 |
| | | | | In raw mode scan stripped html parts when regexp are not 'raw'. | ||||
* | * Add ability to recursive scan over multipart's parts for functions: | Vsevolod Stakhov | 2010-10-20 | 1 | -0/+74 |
| | | | | | | | | - content_type_is_type - content_type_is_subtype - content_type_compare_param - content_type_has_param * Add ability to specify any of actions in user's settings, not only reject. | ||||
* | Fixes types (use glib ones) no functional change. | Vsevolod Stakhov | 2010-10-06 | 1 | -15/+15 |
| | | | | | Now all comments in commit logs beginning with '*' would be included in changelog, so important changes would be separated from small ones. | ||||
* | * Fix shared usage of statfiles | Vsevolod Stakhov | 2010-09-16 | 1 | -0/+1 |
| | | | | | | * Add invalidation of statfiles in case of learning, so now statfiles are invalidated in about a minute after learning * This should fix shared usage of statfile pool by several processes | ||||
* | * Add post filters to lua API - filters that would be called after all ↵ | Vsevolod Stakhov | 2010-08-25 | 1 | -17/+14 |
| | | | | | | | | 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 | ||||
* | * Fixes to winnow learning | Vsevolod Stakhov | 2010-08-05 | 1 | -1/+1 |
| | |||||
* | * Fix wirting message id during fuzzy_add command | Vsevolod Stakhov | 2010-08-04 | 1 | -1/+1 |
| | | | | * Display weight of symbols correctly |