summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Release 1.2.31.2.3Vsevolod Stakhov2016-04-121-0/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * New DCC module (by @smfreegard) * Rework whitelist module: - Now we check different elements for different checks - MIME from for DMARC - DKIM signature domain for DKIM - SMTP from or HELO for SPF * Fix regexps results combination (*critical*) * Fix issue with expressions processing (*critical*) * Optimize strlcpy for aligned input * Add support of half-closed connection in lua_tcp * Allow to print compact json in client * Save required score in history (#581) * Allow to attach file descriptors to control commands * Allow to send descriptors from workers to main * Allow to attach fd when broadcasting to workers * Implement log pipe feature for rspamd logs analysis * Add `log_helper` worker * Add `URIBL_SBL_CSS` (by @smfreegard) * Add worker scripts functionality * Add on load hooks for rspamd_config * Add lua scripts for log_helper worker * Add generic maillist detector (#584) * Implement FANN autolearn using log_helper worker * Rework metrics configuration to allow includes * Change default value of forced removal in composite rules * Allow to use assembly version of blake2b on x86 cpu * Use less precise (but faster) clock if possible * Insert redirected URL to the urls list * Allow to get and set callback data for rspamd symbols * Add binary heap implementation * Use binary heap for expire algorithms in the hash * Use `least frequent used` expiration strategy * Allow to get mime headers from a task * Add support for mime headers in `regexp` module * Update Exim patches (by @fatalbanana) * Allow building rspamd with jemalloc * Save multipart boundaries * SA plugin changes: - Properly handle MIME headers - Fix eval:check_for_missing_to_header rule - Implement SA compatible body regexps - Use sabody rules in SA plugin * LUA API changes: - Add util.get_ticks function - Add util.stat function - Add task:get_symbols_numeric method - Add method to get number of symbols in the cache - Add lua methods to get redirected urls - Allow to get callbacks for lua symbols - Add config:set_symbol_callback function Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
* [CritFix] Fix issue with expressions processingVsevolod Stakhov2016-04-121-10/+12
| | | | | | If the first rule in A + B + C + D > X matched then it was counted like `1 + 1` and not as `0 + 1` as the accumulator was incorrectly treated in that case.
* [Minor] Properly place timers calculationsVsevolod Stakhov2016-04-121-7/+7
|
* [Minor] Hold on with g_slice alterationVsevolod Stakhov2016-04-111-0/+2
|
* [Feature] Use sabody rules in SA pluginVsevolod Stakhov2016-04-111-3/+29
|
* [Fix] Fix sabody rules in regexp cacheVsevolod Stakhov2016-04-111-14/+35
|
* [CritFix] Fix regexps results combinationVsevolod Stakhov2016-04-111-2/+7
| | | | | | When converting to vectored mode we need to remember results between consequent calls of regexp match engine. Prior to this patch this behaviour was broken and caused regexp rules to be matched incorrectly.
* [Feature] Implement SA compatible body regexpsVsevolod Stakhov2016-04-112-0/+47
|
* [Feature] Save multipart boundariesVsevolod Stakhov2016-04-112-0/+2
|
* [Feature] Save raw headers for mime partsVsevolod Stakhov2016-04-113-8/+14
|
* [Fix] Properly handle MIME headers in SA pluginVsevolod Stakhov2016-04-112-13/+35
|
* [Fix] Fix eval:check_for_missing_to_header ruleVsevolod Stakhov2016-04-111-1/+2
|
* [Test] More improvements to heap testsVsevolod Stakhov2016-04-111-26/+67
|
* [Fix] Priority of sink/swim should be reversedVsevolod Stakhov2016-04-111-2/+2
|
* [Fix] Add more guards for heapVsevolod Stakhov2016-04-112-5/+20
|
* [Feature] Use less frequent use strategy for cachesVsevolod Stakhov2016-04-112-6/+30
|
* [Minor] Enable jemalloc for debian buildsVsevolod Stakhov2016-04-112-1/+2
|
* [Feature] Allow building rspamd with jemallocVsevolod Stakhov2016-04-112-0/+19
|
* [Minor] Use g_slice_allocVsevolod Stakhov2016-04-111-3/+3
|
* [Test] Evaluate heap performanceVsevolod Stakhov2016-04-111-0/+44
|
* [Minor] Slightly simplify swap for optimizationVsevolod Stakhov2016-04-111-6/+8
|
* [Minor] Improve tests for heapVsevolod Stakhov2016-04-101-2/+10
|
* [Minor] Add rspamd_min_heap_index helper methodVsevolod Stakhov2016-04-102-0/+18
|
* Merge pull request #589 from fatalbanana/masterVsevolod Stakhov2016-04-103-94/+387
|\ | | | | Update Exim patches
| * Update Exim patchesAndrew Lewis2016-04-093-94/+387
|/
* [Doc] Improve regexp module documentationVsevolod Stakhov2016-04-091-3/+9
|
* [Feature] Support mime regexps in the expressionsVsevolod Stakhov2016-04-091-0/+18
|
* [Feature] Add support of mime headers expressionsVsevolod Stakhov2016-04-092-0/+47
|
* [Feature] Allow to get mime headers from a taskVsevolod Stakhov2016-04-092-0/+53
|
* [Feature] Use heap in LRU cachesVsevolod Stakhov2016-04-086-124/+21
| | | | Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
* [Feature] Allow removal from the heapVsevolod Stakhov2016-04-082-1/+29
|
* [Feature] Add unit tests for heapVsevolod Stakhov2016-04-084-2/+97
|
* [Fix] Fix couple of issues with heap codeVsevolod Stakhov2016-04-081-10/+17
|
* [Minor] Use more simple swap algorithmVsevolod Stakhov2016-04-081-7/+6
|
* [Feature] Add preliminary implementation of binary heapVsevolod Stakhov2016-04-083-1/+229
| | | | Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
* [Feature] Add config:set_symbol_callback functionVsevolod Stakhov2016-04-081-0/+44
|
* [Feature] Allow to get callbacks for lua symbolsVsevolod Stakhov2016-04-071-0/+40
|
* [Feature] Allow to get and set callback data for rspamd symbolsVsevolod Stakhov2016-04-072-0/+62
|
* [Feature] Add magic for callback data in rspamd rulesVsevolod Stakhov2016-04-075-2/+35
|
* [Feature] Add lua methods to get redirected urlsVsevolod Stakhov2016-04-071-6/+31
|
* [Feature] Insert redirected URL to the urls listVsevolod Stakhov2016-04-073-17/+43
|
* [Fetaure] Use less precise clock if possibleVsevolod Stakhov2016-04-061-1/+9
|
* [Fix] Allow to use assembly version of blake2b on x86 cpuVsevolod Stakhov2016-04-061-1/+1
|
* [Minor] Slightly improve logging for fann reloadVsevolod Stakhov2016-04-061-0/+2
|
* [Fix] Rework fann learningVsevolod Stakhov2016-04-061-33/+34
|
* [Fix] Fix fann trainVsevolod Stakhov2016-04-061-63/+31
|
* [Minor] Reformat dcc plugin codeVsevolod Stakhov2016-04-061-87/+87
|
* [Fix] Fix couple of issues with dcc pluginVsevolod Stakhov2016-04-062-41/+43
|
* Merge pull request #586 from smfreegard/dcc_moduleVsevolod Stakhov2016-04-064-0/+168
|\ | | | | New DCC module
| * New dcc moduleSteve Freegard2016-04-054-0/+168
| |