Commit graph

7 commits

Author SHA1 Message Date
fox.cpp
ab1fdac45d
Remove check scoring system
It fits poorly with limited amount of checks that are (and will be)
implemented in maddy.

Advanced filtering that requires "spam score" logic should be performed
by external software such as rspamd. At this point duplicating that
logic in maddy makes no sense, since it is highly problematic to
integrate it with external software.
2019-10-19 19:12:44 +03:00
fox.cpp
0ac85dd332
module: Remove context.Context from Check interface
See previous commit.
2019-10-08 17:21:24 +03:00
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
a887672239
dkim: Implement minimal DKIM verfication
See https://github.com/emersion/go-msgauth/issues/10
for improvements that *should be* made to this initial implementation.
2019-09-18 22:20:04 +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
6feb6bd8a5
config/map: Allow to specify default value for Bool matcher
It makes sense to allow having default of bool flag to true and
allow writing 'name no' to disable it. This allows getting rid of
"dont", "no" etc in names or certain directives which are meant to be
enabled by default. IMO 'do_x no' looks better than 'dont_do_x'
2019-09-12 02:19:10 +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 stateless_check.go (Browse further)