summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [Minor] Simplify methods invocationVsevolod Stakhov2018-09-181-35/+66
|
* [Project] Implement implicit conversions to userdataVsevolod Stakhov2018-09-181-66/+103
|
* [Project] Add method conceptVsevolod Stakhov2018-09-181-2/+4
|
* Merge pull request #2495 from negram/sa_body-regexVsevolod Stakhov2018-09-181-0/+2
|\ | | | | [Test] Input data for the last test case
| * [Test] Input data for the last test caseMikhail Galanin2018-09-181-0/+2
| |
* | Merge pull request #2493 from negram/sa_body-regexVsevolod Stakhov2018-09-182-0/+53
|\| | | | | Sa body regex
| * [Test] Added test for case "hello.\nagain"Mikhail Galanin2018-09-182-0/+7
| |
| * [Test] Forgotten configMikhail Galanin2018-09-181-0/+46
| |
* | Merge pull request #2492 from negram/sa_body-regexVsevolod Stakhov2018-09-184-2/+76
|\| | | | | Sa body regex
| * [Test] Test for regexps in {sa_body} and urls with newlinesMikhail Galanin2018-09-183-0/+62
| |
| * [Minor] Insert spaces only if text part is not suspected to be a linkMikhail Galanin2018-09-181-2/+14
| | | | | | | | | | | | | | sa_body requires newlines to be replaces with spaces. However, some email clients highlight URL in triangular braces (<>) even if it's broken by a newline. Let's just remove \n if current text part potentially can be such URL.
* | Merge pull request #2491 from negram/fix-use-after-freeVsevolod Stakhov2018-09-181-0/+2
|\ \ | |/ |/| [Minor] Fixed error reported by ASAN: do not try using already pop-ed…
| * [Minor] Fixed error reported by ASAN: do not try usins already pop-ed watcherMikhail Galanin2018-09-181-0/+2
|/ | | | | The watcher is pop-ed once session is over but reference to the structure remains in Lua and then being removed from lua dtor. In this case we try to pop it second time. Bad.
* Merge pull request #2489 from moisseev/eslintVsevolod Stakhov2018-09-175-8/+8
|\ | | | | [Minor] Remove extra parentheses
| * [Minor] Remove extra parenthesesAlexander Moisseev2018-09-175-8/+8
| |
* | Merge pull request #2488 from moisseev/frVsevolod Stakhov2018-09-171-1/+6
|\ \ | | | | | | [Feature] Relax FORGED_RECIPIENTS
| * | [Feature] Relax FORGED_RECIPIENTSAlexander Moisseev2018-09-161-1/+6
| | | | | | | | | | | | allow alias expansion and forwarding (Postfix)
* | | [Minor] Rework allowed types logicVsevolod Stakhov2018-09-171-3/+19
| | |
* | | [Minor] Change function name to a more appropriate oneVsevolod Stakhov2018-09-171-7/+8
| | |
* | | [Minor] Allow spaces and stars as separators in selectorsVsevolod Stakhov2018-09-171-1/+1
| | |
* | | [Minor] Fix some minor issuesVsevolod Stakhov2018-09-172-2/+2
| | |
* | | [Project] Add implicit conversion logic to selectorsVsevolod Stakhov2018-09-171-9/+72
| | |
* | | [Project] Rework selectors logicVsevolod Stakhov2018-09-171-61/+87
| | |
* | | [Minor] Fixes to regexp selectorsVsevolod Stakhov2018-09-173-2/+6
| |/ |/|
* | [Minor] Allow to set custom delimiter for regexp selectorsVsevolod Stakhov2018-09-171-1/+7
| |
* | [Feature] Cache selectors results in re runtimeVsevolod Stakhov2018-09-171-14/+59
| |
* | Merge pull request #2487 from moisseev/eslintVsevolod Stakhov2018-09-169-144/+137
|\ \ | |/ |/| [Minor] JS code style changes
| * [Minor] Enforce consistent key-value spacingAlexander Moisseev2018-09-169-65/+67
| |
| * [Minor] Enforce return after callbackAlexander Moisseev2018-09-152-2/+1
| |
| * [Minor] Drop Crockford's `switch` indentationAlexander Moisseev2018-09-153-53/+53
| |
| * [Minor] Initialize variables at declarationAlexander Moisseev2018-09-156-19/+12
| |
| * [Minor] Require capitalized constructor namesAlexander Moisseev2018-09-153-8/+7
| |
* | [Minor] Fix selectors invocationVsevolod Stakhov2018-09-161-13/+12
| |
* | [Minor] Add implicit header type for regexpsVsevolod Stakhov2018-09-161-2/+9
| |
* | [Minor] Add more methods to lua selectorsVsevolod Stakhov2018-09-161-0/+41
| |
* | Merge pull request #2486 from heraklit256/rbl-blocklistVsevolod Stakhov2018-09-151-0/+1
|\ \ | | | | | | make sure blocklist.de-rule for Received IPs only triggers once
| * | make sure blocklist.de-rule for Received IPs only triggers onceheraklit2562018-09-141-0/+1
| | |
* | | [Minor] Fix invocationVsevolod Stakhov2018-09-151-1/+1
| |/ |/|
* | [Project] Implement selectors support in re_cacheVsevolod Stakhov2018-09-151-0/+104
| |
* | [Project] Implement selectors registration for regular expressionsVsevolod Stakhov2018-09-153-0/+150
| |
* | [Minor] Add method create_selector_closureVsevolod Stakhov2018-09-151-0/+21
| |
* | [Project] Add initial support for selectors in regexpsVsevolod Stakhov2018-09-153-24/+84
| |
* | [Minor] Rework multimap regexp rules registrationVsevolod Stakhov2018-09-141-54/+44
| |
* | [Minor] Fix glob flag setVsevolod Stakhov2018-09-141-2/+3
| |
* | [Minor] Fix strlcpy_safe return valueVsevolod Stakhov2018-09-141-1/+1
| |
* | [Feature] Support multi flag in regexp and glob mapsVsevolod Stakhov2018-09-141-11/+36
| |
* | [Minor] Add glob_multi map typeVsevolod Stakhov2018-09-143-0/+48
| |
* | [Fix] Deprecate task:inc_dns_req as it is redundantVsevolod Stakhov2018-09-147-13/+7
| |
* | [Minor] More places where utext_close is requiredVsevolod Stakhov2018-09-142-0/+3
| |
* | [Minor] Add take_n/drop_n processing functionsVsevolod Stakhov2018-09-131-0/+18
| |