Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Fix] Detect confighelp in plugins initialisation | Vsevolod Stakhov | 2017-04-22 | 40 | -12/+205 |
| | |||||
* | [Minor] Improve confighelp output | Vsevolod Stakhov | 2017-04-22 | 1 | -7/+9 |
| | |||||
* | [Minor] Fix recursive add docs strings from the comments | Vsevolod Stakhov | 2017-04-22 | 1 | -3/+11 |
| | |||||
* | [Feature] Rework confighelp to load Lua plugins | Vsevolod Stakhov | 2017-04-22 | 9 | -24/+66 |
| | |||||
* | [Minor] Add config:add_example function | Vsevolod Stakhov | 2017-04-22 | 1 | -0/+37 |
| | |||||
* | [Feature] Add ability to add doc strings by example | Vsevolod Stakhov | 2017-04-22 | 2 | -0/+98 |
| | |||||
* | [Minor] Silence warning | Andrew Lewis | 2017-04-21 | 1 | -1/+1 |
| | |||||
* | [WebUI] Fix add header filter in history | Andrew Lewis | 2017-04-21 | 1 | -2/+2 |
| | | | | | - Issue: #1604 - Reported by: @dimejo | ||||
* | [Feature] Rework hfilter to use hyperscan if possible | Vsevolod Stakhov | 2017-04-21 | 1 | -113/+193 |
| | |||||
* | [Minor] Fix static maps loading | Vsevolod Stakhov | 2017-04-21 | 1 | -20/+61 |
| | |||||
* | [Minor] Fix setting watcher for a session | Vsevolod Stakhov | 2017-04-21 | 1 | -1/+1 |
| | |||||
* | [Minor] Add multiple regexp maps support in lua | Vsevolod Stakhov | 2017-04-21 | 2 | -0/+41 |
| | |||||
* | [Feature] Add support of maps with multiple regexps matches | Vsevolod Stakhov | 2017-04-21 | 3 | -20/+148 |
| | |||||
* | [Fix] Use static maps instead of ugly hack for radix_from_config | Vsevolod Stakhov | 2017-04-21 | 2 | -71/+42 |
| | |||||
* | [Feature] Add support for static maps | Vsevolod Stakhov | 2017-04-21 | 3 | -7/+185 |
| | |||||
* | [Minor] Use hyperscan check function | Vsevolod Stakhov | 2017-04-21 | 5 | -25/+54 |
| | |||||
* | [Feature] Allow async events to be registered from LUA rules | Vsevolod Stakhov | 2017-04-21 | 1 | -1/+141 |
| | | | | | | | | | | | | | | | | | | | | | | | | Here is an example: ```lua rspamd_config.ASYNC_RULE = { callback = function(task) local ret = false local function test1(task) local function test2(task) return ret end ret = true return test2 end return test1 end } ``` | ||||
* | [Feature] Allow to have a stack of watcher finalisers | Vsevolod Stakhov | 2017-04-21 | 2 | -22/+74 |
| | |||||
* | [Minor] Try all hostname regexps to find the most significant one | Vsevolod Stakhov | 2017-04-20 | 1 | -2/+3 |
| | |||||
* | [Minor] Allow to append greylist end time to message reported | Vsevolod Stakhov | 2017-04-20 | 1 | -2/+10 |
| | |||||
* | [Minor] Disable dkim_signing if redis is specified but not configured | Vsevolod Stakhov | 2017-04-20 | 1 | -1/+2 |
| | |||||
* | [Minor] Start 1.6 version | Vsevolod Stakhov | 2017-04-19 | 1 | -2/+2 |
| | |||||
* | Release 1.5.61.5.6 | Vsevolod Stakhov | 2017-04-19 | 1 | -0/+15 |
| | | | | | | | | | | | | | | | | | * [Feature] Add unigramms support in bayes * [Feature] Allow configurable sign headers for DKIM * [Feature] Allow to add unigramm metatokens from Lua * [Feature] DKIM Signing: envelope match exception for local IPs * [Feature] UCL: register parser variables from Lua * [Fix] Always try to adjust filename * [Fix] Do extra copy to ensure that original content is never touched * [Fix] Fix SPOOF_REPLYTO rule * [Fix] Ignore Rmilter added Received * [Fix] More fixes for hashed email dnsbls * [Fix] Plug memory leak in chartable module * [WebUI] Display multiple alerts at once Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru> | ||||
* | Merge pull request #1602 from smfreegard/rules_20170419 | Vsevolod Stakhov | 2017-04-19 | 1 | -0/+22 |
|\ | | | | | Add INFO_TO_INFO_LU rule | ||||
| * | Add INFO_TO_INFO_LU rule | Steve Freegard | 2017-04-19 | 1 | -0/+22 |
|/ | |||||
* | [Minor] Lower CTYPE_MIXED_BOGUS score | Vsevolod Stakhov | 2017-04-19 | 1 | -1/+1 |
| | |||||
* | [Minor] Remove confusing warning about exp overflow | Vsevolod Stakhov | 2017-04-19 | 1 | -3/+19 |
| | |||||
* | Merge pull request #1601 from fatalbanana/ucl | Vsevolod Stakhov | 2017-04-18 | 1 | -0/+76 |
|\ | | | | | [Feature] UCL: register parser variables from Lua | ||||
| * | [Feature] UCL: register parser variables from Lua | Andrew Lewis | 2017-04-18 | 1 | -0/+76 |
| | | |||||
* | | [Fix] Fix SPOOF_REPLYTO rule | Vsevolod Stakhov | 2017-04-18 | 1 | -2/+3 |
| | | |||||
* | | [Fix] Do extra copy to ensure that original content is never touched | Vsevolod Stakhov | 2017-04-18 | 1 | -1/+3 |
|/ | |||||
* | [Minor] Import changes from public suffix list | Andrew Lewis | 2017-04-18 | 1 | -5/+90 |
| | |||||
* | [Minor] DKIM signing: deal with ambiguous settings better | Andrew Lewis | 2017-04-18 | 1 | -5/+9 |
| | |||||
* | Merge pull request #1596 from cpragadeesh/html_test_improv | Vsevolod Stakhov | 2017-04-17 | 1 | -0/+58 |
|\ | | | | | HTML content extraction tests improvement | ||||
| * | html content extraction test improv | Pragadeesh C | 2017-04-14 | 1 | -0/+58 |
| | | |||||
* | | [Minor] Disable IPv6 for SEM RBL | Vsevolod Stakhov | 2017-04-17 | 1 | -0/+1 |
| | | |||||
* | | [Minor] Reduce log noise | Vsevolod Stakhov | 2017-04-17 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #1599 from moisseev/headers | Vsevolod Stakhov | 2017-04-17 | 2 | -0/+13 |
|\ \ | | | | | | | [Minor] Suppress CTYPE_MIXED_BOGUS for yandex.ru web-mail | ||||
| * | | [Minor] Suppress CTYPE_MIXED_BOGUS for yandex.ru web-mail | Alexander Moisseev | 2017-04-17 | 2 | -0/+13 |
|/ / | |||||
* | | [Minor] Slightly increase weight of URL_IN_SUBJECT rule | Vsevolod Stakhov | 2017-04-16 | 1 | -2/+2 |
| | | |||||
* | | [Fix] Ignore Rmilter added Received | Vsevolod Stakhov | 2017-04-16 | 1 | -3/+9 |
| | | | | | | | | Issue: #1587 | ||||
* | | [Minor] Explicitly reset all fields in context on init | Vsevolod Stakhov | 2017-04-14 | 1 | -7/+4 |
| | | |||||
* | | [Feature] Allow configurable sign headers for DKIM | Vsevolod Stakhov | 2017-04-14 | 2 | -16/+30 |
| | | | | | | | | Issue: #1595 | ||||
* | | [Fix] Always try to adjust filename | Vsevolod Stakhov | 2017-04-14 | 1 | -1/+19 |
| | | | | | | | | Issue: #1591 | ||||
* | | [Feature] Allow to add unigramm metatokens from Lua | Vsevolod Stakhov | 2017-04-13 | 1 | -1/+26 |
| | | |||||
* | | [Feature] Add unigramms support in bayes | Vsevolod Stakhov | 2017-04-13 | 3 | -1/+22 |
| | | |||||
* | | [Feature] DKIM Signing: envelope match exception for local IPs | Andrew Lewis | 2017-04-13 | 1 | -3/+12 |
| | | | | | | | | - Also for sign_networks | ||||
* | | [Minor] Fix configuration example | Andrew Lewis | 2017-04-13 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #1589 from smfreegard/rules_20170411 | Andrew Lewis | 2017-04-13 | 1 | -0/+1 |
|\ \ | | | | | | | Fix HTTP_TO_IP in the same way as HTTP_TO_HTTPS | ||||
| * | | Fix HTTP_TO_IP in the same way as HTTP_TO_HTTPS | Steve Freegard | 2017-04-13 | 1 | -0/+1 |
| | | |