Commit graph

6 commits

Author SHA1 Message Date
fox.cpp
1edd031f6a
module: Revise how inline definition arguments are handled
Stop using weird hacks and just pass them to the module, they are
assumed to be aware of inline definition logic anyway.
2019-09-20 18:52:18 +03:00
fox.cpp
6268310462
testutils: Prepend [debug] to log messages with debug flag 2019-09-20 17:19:23 +03:00
fox.cpp
feb1507c75
log: Rework how outputs are handled
Now they are represented by implementations of the log.Output interface
instead of just callbacks. This allows to add additional methods to it.
Mainly, it was done for purpose of Close method for flushing and closing
log files. This is important to make runtime logger reinitialization
(e.g. log rotation) possible.

Additionally, documentation now explains goroutine-safety of logger
objects.
2019-09-19 19:09:25 +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
25a40fe043
module, dispatcher: Implement message rewriting framework
Check.NewMessage is renamed to Check.CheckStateForMsg to allow
a single module to implement both Modifier and Check interfaces.

Due to various implementation details, body and MAIL FROM rewrites
are not applied on per-destination basis.

Closes #134.
2019-09-14 21:58:54 +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