Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Minor] Make API consistent | Vsevolod Stakhov | 2024-09-27 | 1 | -4/+4 |
| | |||||
* | Merge branch 'master' into vstakhov-utf8-mime | Vsevolod Stakhov | 2024-09-05 | 1 | -442/+412 |
|\ | |||||
| * | [Minor] Forgot to handle `parent` | Vsevolod Stakhov | 2024-09-02 | 1 | -3/+27 |
| | | |||||
| * | [Minor] Restore legacy way to register symbols... | Vsevolod Stakhov | 2024-09-02 | 1 | -6/+88 |
| | | |||||
| * | [Doc] Discourage old brain damaged method of symbols registration | Vsevolod Stakhov | 2024-09-02 | 1 | -1/+5 |
| | | |||||
| * | [Fix] Unify lua symbols registration | Vsevolod Stakhov | 2024-09-02 | 1 | -442/+300 |
| | | | | | | | | I'm curious why this bug has been not mentioned for such a long time... | ||||
| * | [Feature] Allow to set negative group score limit via `min_score` | Vsevolod Stakhov | 2024-07-30 | 1 | -0/+2 |
| | | |||||
* | | [Minor] Add flag for mime utf operations | Vsevolod Stakhov | 2024-07-16 | 1 | -0/+24 |
|/ | |||||
* | [Rework] Further types conversion (no functional changes) | Vsevolod Stakhov | 2024-03-18 | 1 | -201/+201 |
| | |||||
* | [Rework] Remove some of the GLib types in lieu of standard ones | Vsevolod Stakhov | 2024-03-18 | 1 | -17/+17 |
| | | | | This types have constant conflicts with the system ones especially on OSX. | ||||
* | [Project] Convert the remaining | Vsevolod Stakhov | 2024-03-05 | 1 | -12/+12 |
| | |||||
* | [Project] Start optimization of userdata hashing | Vsevolod Stakhov | 2024-03-05 | 1 | -4/+4 |
| | |||||
* | [Rework] More steps to do refactoring | Vsevolod Stakhov | 2023-08-16 | 1 | -8/+8 |
| | |||||
* | [Rework] More abstractions to hide C++ internals | Vsevolod Stakhov | 2023-08-14 | 1 | -14/+17 |
| | |||||
* | [Rework] Use clang-format to unify formatting in all sources | Vsevolod Stakhov | 2023-07-26 | 1 | -1558/+1560 |
| | | | | No meaningful changes. | ||||
* | [Minor] Remove assertion in lieu of a log message | Vsevolod Stakhov | 2023-07-17 | 1 | -1/+4 |
| | | | | | Issue: #4533 Closes: #4533 | ||||
* | [Minor] Fix newindex | Vsevolod Stakhov | 2023-05-16 | 1 | -2/+17 |
| | |||||
* | [Minor] Allow more sane flags and ids syntax when register symbols | Vsevolod Stakhov | 2023-05-16 | 1 | -96/+120 |
| | | | | | | | | | | | | | | | | | For example, flags could be defined as: ```lua rspamd_config.register_symbol{ flags = ['ignore_passthrough', 'nice'] } ``` instead of (compatibility is still there): ```lua rspamd_config.register_symbol{ flags = 'ignore_passthrough,nice' } ``` | ||||
* | [Fix] Set symcache item in coroutine calls | Vsevolod Stakhov | 2023-02-03 | 1 | -1/+1 |
| | |||||
* | [Minor] Add a helper method to get the current DNS timeout | Vsevolod Stakhov | 2022-08-20 | 1 | -0/+24 |
| | |||||
* | [Project] Allow `=` separated augmentations to be treated as kv pairs | Vsevolod Stakhov | 2022-08-14 | 1 | -6/+37 |
| | |||||
* | [Project] Support augmentations with values | Vsevolod Stakhov | 2022-08-12 | 1 | -2/+2 |
| | |||||
* | [Minor] Bail on unknown augmentations | Vsevolod Stakhov | 2022-07-31 | 1 | -4/+17 |
| | |||||
* | [Minor] Restore Lua API | Vsevolod Stakhov | 2022-07-24 | 1 | -2/+20 |
| | |||||
* | [Fix] Properly deal with `get_symbol/get_metric_symbol` ambiguity | Vsevolod Stakhov | 2022-05-29 | 1 | -73/+10 |
| | |||||
* | [Minor] Lua_config: Add routine to extract the specific symbol's configuration | Vsevolod Stakhov | 2022-05-18 | 1 | -0/+42 |
| | |||||
* | [Minor] Oops, fix table iteration | Vsevolod Stakhov | 2022-05-14 | 1 | -3/+4 |
| | |||||
* | [Feature] Allow augmentations set in Lua API | Vsevolod Stakhov | 2022-05-14 | 1 | -18/+48 |
| | |||||
* | [Rework] Use dynamic items for calling callbacks | Vsevolod Stakhov | 2022-05-09 | 1 | -3/+3 |
| | | | | | It is trivial to get a static item by dynamic item by just subtracting pointers. So there is no need in other complications. | ||||
* | [Minor] Idempotent != postfilter, wtf | Vsevolod Stakhov | 2022-05-01 | 1 | -1/+2 |
| | |||||
* | [Rework] Further steps | Vsevolod Stakhov | 2022-04-23 | 1 | -33/+0 |
| | |||||
* | [Minor] Implement adding deps and remove an old deprecated method | Vsevolod Stakhov | 2022-04-20 | 1 | -7/+1 |
| | |||||
* | [Project] Remove obsoleted methods | Vsevolod Stakhov | 2022-04-19 | 1 | -29/+2 |
| | |||||
* | Spelling (#4086) | Josh Soref | 2022-02-22 | 1 | -9/+9 |
| | | | [Rework] Massive spelling fix from @jsoref | ||||
* | Merge pull request #4049 from StSturge/feature/configdump_symbol_detail | Vsevolod Stakhov | 2022-01-28 | 1 | -0/+35 |
|\ | | | | | [Minor] rspamadm configdump: parsing fixes and output enhancements | ||||
| * | Address PR review comments | ssturges | 2022-01-27 | 1 | -3/+3 |
| | | |||||
| * | [Fix] Support definition of ungrouped symbol in conf file, use group info ↵ | ssturges | 2022-01-25 | 1 | -0/+35 |
| | | | | | | | | from lua or other conf file | ||||
* | | [Minor] Improve documentation | Vsevolod Stakhov | 2022-01-26 | 1 | -1/+11 |
|/ | |||||
* | [Minor] Fix some leaks on error paths | Vsevolod Stakhov | 2021-09-19 | 1 | -5/+6 |
| | | | | Found by: coverity scan | ||||
* | [Minor] Updates for API documentation | Andrew Lewis | 2021-09-14 | 1 | -18/+26 |
| | | | | | | - Put nested lists on the correct level - Document more symbol type options - Try be clearer about dependencies | ||||
* | [Minor] Configwizard: Fix usage when the config is wrong | Vsevolod Stakhov | 2021-08-24 | 1 | -7/+12 |
| | |||||
* | [Project] Fix lua bindings | Vsevolod Stakhov | 2021-07-15 | 1 | -31/+6 |
| | |||||
* | [Rework] Composites: Start rework of the composites framework | Vsevolod Stakhov | 2021-07-15 | 1 | -1/+1 |
| | |||||
* | [Minor] Rspamadm: Init symcache in rspamadm clickhouse | Vsevolod Stakhov | 2021-04-06 | 1 | -0/+3 |
| | |||||
* | Revert "[Feature] Ppopagate monitored errors from rbl module" | Vsevolod Stakhov | 2021-03-18 | 1 | -19/+0 |
| | | | | This reverts commit e4f459ef31aed15751edd9ae77f6183b7da3b7b4. | ||||
* | [Feature] Ppopagate monitored errors from rbl module | Vsevolod Stakhov | 2021-03-17 | 1 | -0/+19 |
| | |||||
* | [Minor] Save lua line for cfg scripts for debugging | Vsevolod Stakhov | 2021-02-05 | 1 | -0/+44 |
| | |||||
* | [Fix] Allow to set priorities between post init scripts | Vsevolod Stakhov | 2020-12-30 | 1 | -0/+15 |
| | |||||
* | [Fix] Spamassassin: Preserve 'pcre_only' flag when dealing with regexp ↵ | Vsevolod Stakhov | 2020-11-23 | 1 | -3/+13 |
| | | | | replacements | ||||
* | [Minor] Propagate pcre_only flag | Vsevolod Stakhov | 2020-11-23 | 1 | -4/+7 |
| |