summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | [Rework] Breaking: Rewrite cfg transform and remove legacyVsevolod Stakhov2024-08-152-446/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What is removed: * SURBL/Email -> rbl conversion * IP reputation -> reputation conversion Reasoning: * Too hard to support forever * Outdated * Want to use transparent UCL instead of modifying the config from Lua
| * | [Minor] Some minor fixesVsevolod Stakhov2024-08-151-6/+10
| | |
| * | [Project] Some more fixesVsevolod Stakhov2024-08-151-19/+28
| | |
| * | [Project] Add API method to push unwrapped UCL objectVsevolod Stakhov2024-08-142-10/+16
| | |
| * | [Test] Add unit tests for ucl functionsVsevolod Stakhov2024-08-131-0/+60
| | |
| * | [Fix] Make tostring in UCL a bit less brain-damagedVsevolod Stakhov2024-08-131-2/+6
| | |
| * | [Project] Add more stuff to transparent UCLVsevolod Stakhov2024-08-131-30/+85
| | |
| * | [Project] Allow manipulations with opaque UCL objectsVsevolod Stakhov2024-08-131-3/+267
|/ / | | | | | | | | | | | | | | | | If we export an UCL object to Lua we actually lose a lot of useful properties of UCL. For example, we miss ordering, comments, implicit arrays etc. This PR is intended to allow manipulation with UCL object like plain userdata, without unwrapping them to the Lua primitives.
* | [Minor] Update publicsuffix listVsevolod Stakhov2024-08-122-868/+1155
| | | | | | | | Closes: #5103
* | [Minor] More docs updateVsevolod Stakhov2024-08-122-1/+9
| |
* | [Minor] Add instructions for updateVsevolod Stakhov2024-08-121-0/+8
| |
* | Merge pull request #5100 from rspamd/vstakhov-fix-kp-encryptionVsevolod Stakhov2024-08-092-4/+30
|\ \ | | | | | | Fix keypairs encryption/decryption
| * | [Test] Add test for keypairs encrypt/decryptVsevolod Stakhov2024-08-091-0/+26
| | |
| * | [Fix] Use proper keys when doing asymmetric encryptionVsevolod Stakhov2024-08-091-4/+4
| | |
* | | Merge pull request #5099 from rspamd/vstakhov-remove-nist-cryptoboxVsevolod Stakhov2024-08-0924-2069/+823
|\| | | | | | | | Remove NIST mode from cryptobox
| * | [Minor] Oops, fix pubkey loadingVsevolod Stakhov2024-08-091-4/+1
| | |
| * | [Project] Remove NIST mode from everywhereVsevolod Stakhov2024-08-0922-1041/+648
| | |
| * | [Project] Remove NIST (OpenSSL) mode from cryptoboxVsevolod Stakhov2024-08-092-1025/+175
|/ / | | | | | | | | | | | | | | In fact, this mode increases complexity of the crypto library for no good reason: it is never used in Rspamd and it should not be used in fact. It was a research project in the past that should not be supported any longer.
* | [Fix] Do not install doctest stuffVsevolod Stakhov2024-08-091-1/+1
| | | | | | | | Reported by: @moisseev
* | [Fix] Apply the same workaround for signing keysVsevolod Stakhov2024-08-081-9/+13
| |
* | [Fix] Add workaround for the bug in OpenSSL < 3.0.8Vsevolod Stakhov2024-08-081-12/+26
| |
* | [Minor] CMake: show version of packages found if availableVsevolod Stakhov2024-08-081-1/+6
| |
* | [Minor] Another fight with OpenSSL so called "consistency"Vsevolod Stakhov2024-08-071-1/+1
| |
* | [Minor] Another try to fix p256 encryptionVsevolod Stakhov2024-08-071-7/+8
| |
* | [Fix] More bogus sizes fixVsevolod Stakhov2024-08-071-4/+5
| |
* | [Minor] Some more fixes for old OSSLVsevolod Stakhov2024-08-071-2/+1
| |
* | [Fix] Sign key != encryption key, omgVsevolod Stakhov2024-08-072-14/+16
| |
* | [Test] Use proper keypairsVsevolod Stakhov2024-08-071-6/+6
| |
* | [Test] Fix some testVsevolod Stakhov2024-08-071-6/+45
| |
* | [Minor] Some more incompatibilities cleaned upVsevolod Stakhov2024-08-071-2/+2
| |
* | [Fix] Fix compatibility with OSSL 1.0Vsevolod Stakhov2024-08-072-6/+2
| |
* | [Minor] Avoid some warningsVsevolod Stakhov2024-08-073-121/+208
| |
* | [Test] Fix unit testsVsevolod Stakhov2024-08-071-54/+52
| |
* | [CritFix] The max size for signing key is actually 65 bytes for p256Vsevolod Stakhov2024-08-071-1/+1
| |
* | [Minor] Some neatsVsevolod Stakhov2024-08-071-5/+8
| |
* | [Fix] Fix and rework various partsVsevolod Stakhov2024-08-074-54/+94
| |
* | Merge branch 'master' into masterVsevolod Stakhov2024-08-0712-2545/+4313
|\ \
| * \ Merge pull request #5094 from rspamd/vstakhov-update-doctestVsevolod Stakhov2024-08-0712-2545/+4313
| |\ \ | | | | | | | | [Dep] Update doctest to 2.4.11
| | * | [Dep] Update doctest to 2.4.11Vsevolod Stakhov2024-08-0712-2545/+4313
| |/ /
* | | [Rework] Use a more straight structure for DKIM keysVsevolod Stakhov2024-08-071-37/+42
| | |
* | | [Minor] Another formatting issueVsevolod Stakhov2024-08-073-42/+43
| | |
* | | [Minor] Restore formattingVsevolod Stakhov2024-08-073-104/+102
| | |
* | | Merge branch 'master' into masterVsevolod Stakhov2024-08-0729-189/+652
|\| |
| * | Merge pull request #5093 from rspamd/vstakhov-rdns-separateVsevolod Stakhov2024-08-065-81/+97
| |\ \ | | | | | | | | [Rework] Resolve rdns in a separate function
| | * | [Minor] Reduce priority as settings become broken otherwiseVsevolod Stakhov2024-08-061-1/+2
| | | | | | | | | | | | | | | | | | | | For future settings rework: there should be spill of settings checks to allow dependency on symbols that are required for settings conditions.
| | * | [Rework] Resolve rdns in a separate functionVsevolod Stakhov2024-08-065-81/+96
| |/ / | | | | | | | | | | | | | | | | | | Historically, it was done in `once_received` module, however, that check must be done early, even before settings (as they could rely on hostname). Hence, it was discussed to move this code to a separate rule.
| * | Merge pull request #5092 from rspamd/vstakhov-log-tag-passthroughVsevolod Stakhov2024-08-064-7/+31
| |\ \ | | | | | | | | [Project] Allow to change log tag from HTTP request
| | * | [Minor] Show HTTP result for mirrors as wellVsevolod Stakhov2024-08-051-1/+2
| | | |
| | * | [Minor] Show better log when proxy finishes it's connectionVsevolod Stakhov2024-08-051-1/+4
| | | |
| | * | [Minor] Propagate proxy log tagVsevolod Stakhov2024-08-051-0/+2
| | | |