summaryrefslogtreecommitdiffstats
path: root/src/lua/lua_config.c
Commit message (Collapse)AuthorAgeFilesLines
* [Rework] More steps to do refactoringVsevolod Stakhov2023-08-161-8/+8
|
* [Rework] More abstractions to hide C++ internalsVsevolod Stakhov2023-08-141-14/+17
|
* [Rework] Use clang-format to unify formatting in all sourcesVsevolod Stakhov2023-07-261-1558/+1560
| | | | No meaningful changes.
* [Minor] Remove assertion in lieu of a log messageVsevolod Stakhov2023-07-171-1/+4
| | | | | Issue: #4533 Closes: #4533
* [Minor] Fix newindexVsevolod Stakhov2023-05-161-2/+17
|
* [Minor] Allow more sane flags and ids syntax when register symbolsVsevolod Stakhov2023-05-161-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 callsVsevolod Stakhov2023-02-031-1/+1
|
* [Minor] Add a helper method to get the current DNS timeoutVsevolod Stakhov2022-08-201-0/+24
|
* [Project] Allow `=` separated augmentations to be treated as kv pairsVsevolod Stakhov2022-08-141-6/+37
|
* [Project] Support augmentations with valuesVsevolod Stakhov2022-08-121-2/+2
|
* [Minor] Bail on unknown augmentationsVsevolod Stakhov2022-07-311-4/+17
|
* [Minor] Restore Lua APIVsevolod Stakhov2022-07-241-2/+20
|
* [Fix] Properly deal with `get_symbol/get_metric_symbol` ambiguityVsevolod Stakhov2022-05-291-73/+10
|
* [Minor] Lua_config: Add routine to extract the specific symbol's configurationVsevolod Stakhov2022-05-181-0/+42
|
* [Minor] Oops, fix table iterationVsevolod Stakhov2022-05-141-3/+4
|
* [Feature] Allow augmentations set in Lua APIVsevolod Stakhov2022-05-141-18/+48
|
* [Rework] Use dynamic items for calling callbacksVsevolod Stakhov2022-05-091-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, wtfVsevolod Stakhov2022-05-011-1/+2
|
* [Rework] Further stepsVsevolod Stakhov2022-04-231-33/+0
|
* [Minor] Implement adding deps and remove an old deprecated methodVsevolod Stakhov2022-04-201-7/+1
|
* [Project] Remove obsoleted methodsVsevolod Stakhov2022-04-191-29/+2
|
* Spelling (#4086)Josh Soref2022-02-221-9/+9
| | | [Rework] Massive spelling fix from @jsoref
* Merge pull request #4049 from StSturge/feature/configdump_symbol_detailVsevolod Stakhov2022-01-281-0/+35
|\ | | | | [Minor] rspamadm configdump: parsing fixes and output enhancements
| * Address PR review commentsssturges2022-01-271-3/+3
| |
| * [Fix] Support definition of ungrouped symbol in conf file, use group info ↵ssturges2022-01-251-0/+35
| | | | | | | | from lua or other conf file
* | [Minor] Improve documentationVsevolod Stakhov2022-01-261-1/+11
|/
* [Minor] Fix some leaks on error pathsVsevolod Stakhov2021-09-191-5/+6
| | | | Found by: coverity scan
* [Minor] Updates for API documentationAndrew Lewis2021-09-141-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 wrongVsevolod Stakhov2021-08-241-7/+12
|
* [Project] Fix lua bindingsVsevolod Stakhov2021-07-151-31/+6
|
* [Rework] Composites: Start rework of the composites frameworkVsevolod Stakhov2021-07-151-1/+1
|
* [Minor] Rspamadm: Init symcache in rspamadm clickhouseVsevolod Stakhov2021-04-061-0/+3
|
* Revert "[Feature] Ppopagate monitored errors from rbl module"Vsevolod Stakhov2021-03-181-19/+0
| | | | This reverts commit e4f459ef31aed15751edd9ae77f6183b7da3b7b4.
* [Feature] Ppopagate monitored errors from rbl moduleVsevolod Stakhov2021-03-171-0/+19
|
* [Minor] Save lua line for cfg scripts for debuggingVsevolod Stakhov2021-02-051-0/+44
|
* [Fix] Allow to set priorities between post init scriptsVsevolod Stakhov2020-12-301-0/+15
|
* [Fix] Spamassassin: Preserve 'pcre_only' flag when dealing with regexp ↵Vsevolod Stakhov2020-11-231-3/+13
| | | | replacements
* [Minor] Propagate pcre_only flagVsevolod Stakhov2020-11-231-4/+7
|
* [Project] Support connection filters registration from LuaVsevolod Stakhov2020-10-191-7/+17
|
* [Rework] Neural: Skip composite symbolsVsevolod Stakhov2020-10-051-0/+4
|
* [Project] Preliminary support of lua conditions for regexpsVsevolod Stakhov2020-07-241-1/+1
|
* [Minor] Remove redundant codeVsevolod Stakhov2020-06-121-10/+3
|
* [Minor] Some fixes to allow empty symbols_enabled/disabledVsevolod Stakhov2020-05-291-2/+26
|
* [Minor] Properly register callback symbolsVsevolod Stakhov2020-05-261-1/+1
|
* [Fix] Fix lua_parse_symbol_type function logicVsevolod Stakhov2020-05-011-6/+12
|
* [Minor] Support flatten attribute in rspamd_config:register_re_selectorVsevolod Stakhov2020-04-081-3/+11
|
* [Fix] Fix lua symbols scores registration when config does not define scoresVsevolod Stakhov2020-03-121-7/+12
|
* Revert "[Minor] Filter nil values in rspamd_config:get_all_opt"Vsevolod Stakhov2020-03-111-2/+2
| | | | This reverts commit af30ca1eb035d6824107c1f55613099c6331cbdb.
* [Minor] Filter nil values in rspamd_config:get_all_optVsevolod Stakhov2020-03-111-2/+2
|
* [Minor] Fix strict config checksVsevolod Stakhov2020-02-211-2/+2
|