Commit graph

4 commits

Author SHA1 Message Date
fox.cpp
028d8b914c
Rename dispatcher to "msgpipeline"
New name more precisely describes what it is doing now. It was initally
meant to be more generic and usable for other purposes, but I don't
think we will need that flexibility.
2019-10-13 18:42:51 +03:00
fox.cpp
96f7907c85
dispatcher: Move check running code into a separate object
Splitting up mess Dispatcher became.

One side effect of changes in this commit is that checks score
is compared against reject/quarantine score only once in Body function.
This actually is a good thing since this allows checks to
"override" results of other checks executed before.

There is concern about much bigger amount of bookkeeping required now
for check states. Changes in GC overhead due to this should be
investigated.
2019-10-08 00:56:08 +03:00
fox.cpp
eb17a0309d
dispatcher: Split AddRcpt and Start, fix *State object leaks
Close method was not called on CheckState/ModifierState objects
sometimes, leading to possible resource leaks.
2019-09-14 21:58:55 +03:00
fox.cpp
35c3b1c792
Restructure code tree
Root package now contains only initialization code and 'dummy' module.

Each module now got its own package. Module packages are grouped by
their main purpose (storage/, target/, auth/, etc). Shared code is
placed in these "group" packages.

Parser for module references in config is moved into config/module.

Code shared by tests (mock modules, etc) is placed in testutils.
2019-09-08 16:06:38 +03:00
Renamed from dispatcher_check_test.go (Browse further)