aboutsummaryrefslogtreecommitdiffstats
path: root/src/rspamd_proxy.c
Commit message (Collapse)AuthorAgeFilesLines
...
* [Fix] Lot's of fixes in maps check logicVsevolod Stakhov2019-10-271-2/+2
|
* [Minor] Do not use floating point when extending buffersVsevolod Stakhov2019-10-171-1/+1
|
* [Minor] Strictly check worker context magicVsevolod Stakhov2019-10-041-0/+1
|
* [Minor] Further static leaks removalVsevolod Stakhov2019-09-271-2/+3
|
* [Fix] Extend task_timeout to postfilters stageVsevolod Stakhov2019-08-101-2/+4
|
* [Minor] Set protocol flags in self-scan modeVsevolod Stakhov2019-08-031-0/+6
|
* [Project] Add message block support to the clientVsevolod Stakhov2019-07-181-4/+4
|
* [Project] Add possibility to modify body in milter contextVsevolod Stakhov2019-07-181-10/+81
|
* [Fix] Another bunch of fixes towards protocol messVsevolod Stakhov2019-07-171-5/+3
|
* [Minor] Load hyperscan cache in controller as wellVsevolod Stakhov2019-06-221-0/+1
|
* [Project] Make it compileable again...Vsevolod Stakhov2019-06-221-50/+36
|
* [Project] First refactoring step libevent->libevVsevolod Stakhov2019-06-221-1/+1
|
* [Fix] Do not use lightuserdata for tracebackVsevolod Stakhov2019-05-241-16/+4
| | | | | | | | | | 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
* [Minor] Refactor DNS resolver invocationsVsevolod Stakhov2019-04-111-1/+1
|
* [Project] Preliminary support of HTTP proxiesVsevolod Stakhov2019-03-181-1/+2
| | | | Issue: #572
* [Rework] Another iteration of HTTP interfaces reworkVsevolod Stakhov2019-03-181-9/+6
|
* [Minor] Fix another deinit raceVsevolod Stakhov2019-02-261-1/+2
|
* [Minor] Fix cleanupVsevolod Stakhov2019-02-261-1/+1
|
* [Project] HTTP: Rework HTTP connections API to simplify its usageVsevolod Stakhov2019-02-251-18/+13
|
* [Project] Adopt plugins, workers, rspamadm and rspamc for http_contextVsevolod Stakhov2019-02-191-62/+16
|
* [Fix] Core: Fix address rotation bugVsevolod Stakhov2019-02-181-10/+15
| | | | | | | | | | | | | | | | | | | | | | Previously, upstream.get_addr function returned the new address of the upstream. Unfortunately, it was used for printing addresses. It caused the following situation: let's imagine we have A1 and A2 where A1 was initially selected. So the connection was performed to A1: Current addr Selected addr Connect+---------+ A2+------>A1 A1 | +-+Print failure<---+ A1+------>A2 A2 | +----+ +->Mark failure+-------->+ A2 | +----+ But the failure OP as well as log message told about `A2` where the real problem happened with `A1`. This commit adds distinguishing between getting the next and the current address of the upstream resolving this issue.
* [Rework] Start rework of the HTTP libraryVsevolod Stakhov2019-02-151-1/+1
|
* [Minor] Milter: Add support of quarantine and discard actionsVsevolod Stakhov2019-01-261-0/+1
|
* [Minor] Fix task timeout in proxy workerVsevolod Stakhov2018-12-071-5/+3
|
* [Rework] Unify task_timeoutVsevolod Stakhov2018-12-061-0/+13
|
* [Rework] Change time handlingVsevolod Stakhov2018-10-291-2/+2
|
* [Feature] Tune upstream limits in Rspamd proxyVsevolod Stakhov2018-10-231-0/+32
|
* [Minor] Log should not depend on configMikhail Galanin2018-08-301-2/+1
| | | | When config is being closed, some destructors could be called, and that dtors could write into log. Hence, it is better to terminate config and only then close log. And log should not refer disposed config
* [Minor] Log bad output if proxied connection returns garbadgeVsevolod Stakhov2018-08-131-0/+5
|
* [Feature] Distinguish IP failures from connection failuresVsevolod Stakhov2018-07-021-4/+4
|
* [Minor] Add aux method to disable HTTP encryptiponVsevolod Stakhov2018-06-241-2/+2
|
* [Minor] Ignore unknown font sizes for nowVsevolod Stakhov2018-06-221-1/+1
|
* [CritFix] Fix maps race conditions on reloadVsevolod Stakhov2018-06-191-1/+1
|
* [Minor] Avoid shared memory usage in file scan modeVsevolod Stakhov2018-05-041-0/+2
|
* [Minor] Set correct HTTP method when proxying connectionsVsevolod Stakhov2018-05-041-2/+7
|
* [Minor] Add macros to access strings dataVsevolod Stakhov2018-03-311-2/+3
|
* [Feature] Allow to specify custom rejection message in milterVsevolod Stakhov2018-03-241-0/+11
|
* [Fix] Fix scan time setVsevolod Stakhov2018-03-221-2/+1
|
* [Fix] Disable results cachingVsevolod Stakhov2018-03-221-0/+2
|
* [Fix] Do not trust all issuers as a client certificateVsevolod Stakhov2018-03-191-3/+21
| | | | Issue: #2087
* [Minor] Allow to proxy empty filesVsevolod Stakhov2018-03-061-5/+11
|
* [Minor] Allow to detect worker's scanner flag from luaVsevolod Stakhov2018-02-261-1/+1
|
* [Project] Convert all C modules to fast debug infrastructureVsevolod Stakhov2018-01-201-2/+5
|
* [Project] Initialize language detectorVsevolod Stakhov2018-01-011-1/+1
|
* [Project] Enable language detector init in scanner workersVsevolod Stakhov2017-12-311-1/+5
|
* [Fix] Remove hop-by-hop headers in proxyVsevolod Stakhov2017-12-311-0/+6
| | | | Issue: #1973
* [Fix] Handle proxy copy errorsVsevolod Stakhov2017-12-141-5/+20
|
* [Fix] Better handling of the legacy protocolVsevolod Stakhov2017-11-251-4/+6
|
* [Feature] Allow to quarantine rejected messages using milter interfaceVsevolod Stakhov2017-11-231-1/+11
|
* [Fix] Stop using of g_slice...Vsevolod Stakhov2017-10-271-3/+3
|