aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* [Minor] Lua_config: Add get_group_symbols methodVsevolod Stakhov2019-06-142-0/+48
|
* [Project] Implement logic to deal with settings id in the cacheVsevolod Stakhov2019-06-144-20/+175
|
* [Project] Add preprocessed settings to the config structureVsevolod Stakhov2019-06-147-17/+177
|
* [Fix] Html: Fix processing of fjlig entityVsevolod Stakhov2019-06-142-6/+8
| | | | TODO: Make a generic fix
* [Project] Implement settings ids checksVsevolod Stakhov2019-06-131-22/+82
|
* [Project] Add methods to manipulate with allowed idsVsevolod Stakhov2019-06-132-1/+200
|
* [Minor] Protocol: Allow parsing of recipients with commasVsevolod Stakhov2019-06-121-34/+112
|
* [Minor] Clickhouse: Store settings idVsevolod Stakhov2019-06-112-2/+16
|
* [Project] Settings: Add lua_settings libraryVsevolod Stakhov2019-06-111-12/+10
|
* [Feature] Clickhouse: Add authenticated user and settings id columnsVsevolod Stakhov2019-06-111-2/+19
|
* [Minor] Another try to fix transactions messVsevolod Stakhov2019-06-111-22/+3
|
* [Minor] Sqlite: Try to fix messy transactionVsevolod Stakhov2019-06-101-2/+11
|
* [Rework] Eliminate lua_squeeze as it has shown no improvementsVsevolod Stakhov2019-06-107-313/+78
|
* [Minor] Sqlite: Improve tokens retreivingVsevolod Stakhov2019-06-101-23/+45
|
* [Minor] Settings: Use numeric settings idVsevolod Stakhov2019-06-101-9/+48
|
* [Minor] Settings: Treat settings section name as implicit idVsevolod Stakhov2019-06-101-0/+1
|
* [Minor] Add "application/excel" CT for "*.xls"Alexander Moisseev2019-06-101-0/+1
|
* [Minor] Allow braced and prefixed IPv6 addressesVsevolod Stakhov2019-06-091-0/+6
|
* Merge pull request #2915 from gollux/masterVsevolod Stakhov2019-06-091-10/+8
|\ | | | | libutil: Fix parsing of address "IPv6:::1"
| * libutil: Fix parsing of address "IPv6:::1"Martin Mares2019-06-041-10/+8
| | | | | | | | | | | | | | Dropping of leading colon must be performed after the "IPv6:" prefix is stripped. Also fixed a couple of wrong comments.
* | [Feature] SURBL: Allow to check email domainsVsevolod Stakhov2019-06-091-7/+19
| | | | | | | | Issue: #2913
* | [Minor] Lua_cryptobox: Allow to define output hash lengthVsevolod Stakhov2019-06-081-8/+52
| |
* | [Minor] Fix typesVsevolod Stakhov2019-06-082-3/+3
| |
* | [Fix] Do not assert if length of sig is bad, just fail verificationVsevolod Stakhov2019-06-071-2/+3
| |
* | [Project] Store settings id directlyVsevolod Stakhov2019-06-074-16/+8
| |
* | [Minor] Langdet: Improve debugging slightlyVsevolod Stakhov2019-06-051-0/+3
| |
* | [CritFix] Langdet: Fix language detection where no stop words foundVsevolod Stakhov2019-06-051-3/+20
| |
* | [Minor] Langdet: Increase cut-off limitVsevolod Stakhov2019-06-051-1/+1
| |
* | [Fix] Lang_det: Try better to distinguish Chinese and JapaneseVsevolod Stakhov2019-06-051-13/+47
| |
* | [Fix] Really fix hyperscan workaroundVsevolod Stakhov2019-06-051-7/+41
| | | | | | | | Closes: #2916
* | Revert "[Fix] Escape utf in regexp to dodge ragel/hyperscan issue"Vsevolod Stakhov2019-06-053-8/+3
|/ | | | This reverts commit e658c7fcb5d275f144954b9cea1c34fadfa81902.
* [Fix] Escape utf in regexp to dodge ragel/hyperscan issueVsevolod Stakhov2019-06-043-3/+8
|
* [Rework] Dkim: Remove signing codeVsevolod Stakhov2019-05-311-233/+1
|
* [Test] Add functional tests for ssl in lua_tcpVsevolod Stakhov2019-05-311-1/+2
|
* [Minor] Fix pcre2 jit checksVsevolod Stakhov2019-05-301-9/+16
|
* [Minor] Lua_tcp: Add starttls implementationVsevolod Stakhov2019-05-301-0/+28
|
* [Minor] SURBL: Do not append suffix to the options listVsevolod Stakhov2019-05-301-4/+17
|
* [Feature] Lua_tcp: Add preliminary support of SSL connectionsVsevolod Stakhov2019-05-291-14/+125
|
* [CritFix] Fix loading of DKIM public keysVsevolod Stakhov2019-05-291-3/+3
|
* [Fix] Do not output rbl suffix in symbol optionVsevolod Stakhov2019-05-291-10/+14
|
* [Minor] Use lua_smtp for dmarc reportsVsevolod Stakhov2019-05-251-149/+66
|
* [Minor] Rework API to remove task dependencyVsevolod Stakhov2019-05-251-2/+3
|
* [Minor] Use lua_smtp in metadata_exporterVsevolod Stakhov2019-05-251-120/+12
|
* [Minor] Fix format stringVsevolod Stakhov2019-05-241-1/+1
|
* [Minor] Remove string from top to avoid lua stack issuesVsevolod Stakhov2019-05-241-0/+1
|
* [Minor] Fix processing message ids without bracesVsevolod Stakhov2019-05-241-19/+19
|
* [Minor] Settings: Add workarounds for maxscoreVsevolod Stakhov2019-05-241-9/+33
|
* [Fix] Do not use lightuserdata for tracebackVsevolod Stakhov2019-05-2422-254/+117
| | | | | | | | | | LuaJIT limits lightuserdata usage to 47 bits. On Arm64, this leads to break of the C <-> Lua interoperability using this type. This rework has changed traceback function behaviour from lightuserdata opaque pointer (GString * in particular) to luaL_Buffer. Issue: #2906
* [Fix] Lua_tcp: Report connection failuresVsevolod Stakhov2019-05-231-8/+5
| | | | Issue: #2899
* [Fix] Fix history resetVsevolod Stakhov2019-05-231-12/+9
| | | | Issue: #2910