Commit graph

17 commits

Author SHA1 Message Date
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
Amit Levy
c561492da7 Chore: Replace "msg ID = %s" in log messages with logger wrapper 2019-08-31 18:50:09 +03:00
fox.cpp
7583e418cb
Rework how check results are reported and processed
In general, the checks interface with added scoring and quarantining
support was not convenient to use enough. Also it was problematic
to add support for Authentication-Results header field generation.

Per-sender and per-recipient checks were not applied to body.
This is fixed now.

Checks inspecting the message header was able to see header
modifications done by other checks. This could lead to unwanted
side-effects and so now checks can't modify the header directly
and instead can only prepend fields to it by returning them.

Additionally, it allows checks to return values for
Authentication-Results field. Each server handling the message should
add only one field, so it is not possible to implement it using header
prepending.

MsgMetadata.CheckScore is removed, now it is managed internally by
dispatcher code and not exposed where it is not needed.

MsgMetadata.Quarantine is no longer set directly by checks code. Future
refactoring may be remove it altogether as it is discouraged to have
mutable flags in MsgMetadata.

On top of that, tests are added for all new code.
2019-08-31 01:15:48 +03:00
fox.cpp
519cca82c3
dispatcher: Don't do score checking by default 2019-08-28 16:09:12 +03:00
fox.cpp
f128aa689b
smtp, dispatcher, sql: Use SMTPError with enhanced codes 2019-08-28 14:41:28 +03:00
fox.cpp
8b0a48446e
dispatcher: Add basic logic for check scoring 2019-08-28 04:12:02 +03:00
fox.cpp
bd918fb4d9
all: Rename module and update imports 2019-08-25 20:32:53 +03:00
fox.cpp
36df546193 Rename DeliveryContext to MsgMetadata, update docs
The name "context" is also used for several other entities. This is
simply confusing. We are getting rid of that fancy word and will leave
it only for context.Context.

Additionally, with the introduction of the new interfaces for most
stuff DeliveryContext struct is no longer used to pass arbitrary
data between modules, it now contains mostly message meta-data and
a few flags, though the latter is now discouraged because it may
lead to problems with concurrency.

Additionally, documentation for some fields in the structure was wrong.

The field DeliveryID is simply renamed to ID for clarity.
2019-08-25 20:23:13 +03:00
fox.cpp
68ae730b1b dispatcher: Fix a few typos in dispatcher log messages
Accidentally replaced them while renaming some variables.
2019-08-25 20:23:13 +03:00
fox.cpp
d07d656472 buffer: Move to a separate package
The module package is meant for interfaces implemented by modules and is
not a catch-all for all utilities.
2019-08-25 20:23:13 +03:00
fox.cpp
4af1f46a4d module: Clarify and rename BodyBuffer interface
Close method does not free the "buffer handle", it discards
the underlying data. It is renamed to Remove.

Interface itself is renamed simply into Buffer since it can be used for
any blob, not just message body.
2019-08-25 20:23:13 +03:00
fox.cpp
8579c50762 dispatcher: Don't log anything while debug is off
On a second thought, I think its source module responsbility to
report failures.
2019-08-25 20:23:13 +03:00
fox.cpp
ba520116ac Add missing header argument for Delivery.Body function
dispatcher: Add missing Body check group execution.
2019-08-25 20:23:13 +03:00
fox.cpp
b069736faf dispatcher: Implement config parser 2019-08-25 20:23:13 +03:00
fox.cpp
ac295fed8b dispatcher: Implement message check running 2019-08-25 20:23:13 +03:00
fox.cpp
30284bdcae dispatcher: Don't duplicate messages when rcpt blocks use one target 2019-08-25 20:23:13 +03:00
fox.cpp
c7154a62a0 Implement per-source/recipient dispatching logic 2019-08-25 20:23:13 +03:00