aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* [Feature] Allow to send descriptors from workers to mainVsevolod Stakhov2016-04-044-6/+40
|
* [Feature] Allow to attach file descriptors to control commandsVsevolod Stakhov2016-04-045-6/+42
|
* [Fix] Try to set redis to NULL to avoid double freeVsevolod Stakhov2016-04-041-0/+4
|
* [Fix] Change copy strategy in strlcpyVsevolod Stakhov2016-04-031-7/+21
|
* [Fix] Save required score in historyVsevolod Stakhov2016-04-031-0/+1
| | | | Issue: #581
* [Fix] Fix strlcpy startupVsevolod Stakhov2016-04-021-1/+1
|
* [Feature] Allow to print compact json in clientVsevolod Stakhov2016-04-021-9/+17
|
* [Feature] Add support of half-closed connection in lua_tcpVsevolod Stakhov2016-04-021-2/+27
|
* [Minor] Fix iteratorAndrew Lewis2016-04-011-1/+1
|
* [Feature] Optimize strlcpy for aligned inputVsevolod Stakhov2016-04-011-7/+24
|
* [Feature] Rework whitelist moduleVsevolod Stakhov2016-04-011-48/+76
| | | | | | | - Now we check different elements for different checks - MIME from for DMARC - DKIM signature domain for DKIM - SMTP from or HELO for SPF
* [Minor] Fix log level for repeated messageVsevolod Stakhov2016-04-011-1/+1
|
* [Fix] Investigate many border cases in URLs parserVsevolod Stakhov2016-03-311-6/+39
|
* [Fix] Do not parse broken TLD partsVsevolod Stakhov2016-03-311-0/+3
|
* [Feature] Save trace for SA metasVsevolod Stakhov2016-03-311-2/+3
|
* [Feature] Allow tables in task:insert_resultVsevolod Stakhov2016-03-311-4/+20
|
* [Feature] Add expression:process_traced methodVsevolod Stakhov2016-03-311-0/+43
|
* [Feature] Add task:get_symbols methodVsevolod Stakhov2016-03-311-0/+39
|
* [Fix] Fix sorting of limitsVsevolod Stakhov2016-03-311-6/+51
|
* [Fix] Fix saving of regexp atoms stringsVsevolod Stakhov2016-03-311-1/+1
|
* [Feature] Use XXH64 on 64 bits platforms onlyVsevolod Stakhov2016-03-315-79/+100
|
* [Fix] Allow to edit new files with signtoolVsevolod Stakhov2016-03-311-7/+29
|
* [Fix] Print error when cannot connect to rspamdVsevolod Stakhov2016-03-301-0/+4
|
* [Fix] Fix return value from the functionVsevolod Stakhov2016-03-301-1/+1
|
* [Fix] Improve parsing of the connect string for the clientVsevolod Stakhov2016-03-301-13/+31
|
* [Feature] Implement vectored mode for hyperscanVsevolod Stakhov2016-03-291-102/+202
| | | | | Rspamd can now use the fastest possible mode of hyperscan to allow further speed up in regexps matching.
* [Feature] Improve processing of headers to luaVsevolod Stakhov2016-03-291-3/+11
|
* [Feature] Add method to get headers as array for speedVsevolod Stakhov2016-03-292-0/+32
|
* [Minor] Add vectorized_hyperscan configuration knobVsevolod Stakhov2016-03-292-0/+7
| | | | No underlaying functionality is implemented yet.
* [Feature] Find URLs with '\r' and '\n' inside href attributeVsevolod Stakhov2016-03-291-0/+16
|
* [Feature] Allow to select settings by id in HTTP queryVsevolod Stakhov2016-03-291-0/+17
|
* [Feature] Allow to disable checks from settingsVsevolod Stakhov2016-03-291-6/+57
|
* [Feature] Add method to disable symbols execution in the cacheVsevolod Stakhov2016-03-292-36/+84
|
* [Fix] Rework settings actions in symbols cacheVsevolod Stakhov2016-03-291-30/+2
|
* [Fix] Fix parsing of include/redirect with many records in SPFVsevolod Stakhov2016-03-291-0/+5
|
* [Feature] Simplify actions application by the settingsVsevolod Stakhov2016-03-296-59/+41
|
* [Feature] Store actions limits in metric resultVsevolod Stakhov2016-03-295-8/+12
|
* [Feature] Add tracking for rspamd expressionsVsevolod Stakhov2016-03-282-5/+27
|
* [Fix] Do not use '|' symbol as it is operator's symbolVsevolod Stakhov2016-03-281-1/+1
| | | | Replace '|' with '^'.
* [Feature] Further rework of composite rulesVsevolod Stakhov2016-03-281-22/+45
| | | | | Now it is possible to force removal for a symbol in a composite by adding '|' symbol to its name.
* [Fix] Save log level when compressing log messagesVsevolod Stakhov2016-03-271-5/+10
|
* [Feature] Use HTTP Content-Type on non mime input if possibleVsevolod Stakhov2016-03-261-1/+15
|
* [Minor] Remove legacy interfaceVsevolod Stakhov2016-03-263-45/+1
|
* [Feature] Show map URLs in webuiVsevolod Stakhov2016-03-233-4/+5
|
* [Feature] Improve logging for fuzzy hashesVsevolod Stakhov2016-03-221-8/+23
|
* [Fix] Fixed cryptobox cleanupVsevolod Stakhov2016-03-221-1/+1
|
* [Feature] Do not classify message if some class is missingVsevolod Stakhov2016-03-225-0/+49
|
* [Fix] Fix crashes on arm32Vsevolod Stakhov2016-03-222-4/+5
|
* [Feature] Allow symbols params to be printed in logsVsevolod Stakhov2016-03-223-15/+29
|
* [Feature] Add list support to `mime types` module configurationAlexander Moisseev2016-03-221-5/+20
| | | | - this change allows to configure several mime types for an extension like ```txt = [ "message/disposition-notification", "text/plain", "text/rfc822-headers" ];``` - `type` variable replaced with `mtype` as `type` is lua reserved word