Commit graph

8 commits

Author SHA1 Message Date
fox.cpp
af4f180503
msgpipeline: Allow to chain pipelines
This allows for some complex but useful configurations, such as making
decision on delivery target based on the result of per-destination
address rewriting. One example where that can be useful is aliasing
local address to a remote address in a way that can't make the server
an open relay.
2019-11-07 22:39:04 +03:00
fox.cpp
363c2497a7
msgpipeline: Fix incorrect error message in config parser 2019-11-07 21:30:34 +03:00
fox.cpp
331ce209cd
msgpipeline: Merge multiple check/modifier blocks in config
Previous code was silently ignoring all blocks except for the last one.
2019-11-06 21:54:02 +03:00
fox.cpp
df7df5b327
Finish move to exterrors.SMTPError
Use of properly annotated errors is important since cf9e81d
to make logs useful.
2019-11-03 16:24:33 +03:00
fox.cpp
ba0a2e221c
Fix bunch of linter warnings
Some fixed warnings are not actual problems. I just want output
golangci-run to be smaller. Otherwise it is problematic to see
actual problems found by linters due to amount of noise.

testutils, ctl/maddyctl: Remove quite a lot of unused entities.
msgpipeline: Fix typo in log message.
msgpipeline: Add missing 'case 0' for 'reject' directive parsing
msgpipeline: Preallocate slice in parseChecksGroup
Check errors in some places in tests.
smtp_upstream: Move DATA command use into Commit
target/queue: Avoid copying sync.Mutex
    Not a problem since it is not used after copying, but I just want
    govet to shut up.
2019-10-22 04:06:59 +03:00
fox.cpp
ad4c04452a
Minimal DMARC checking implementation 2019-10-21 20:01:21 +03:00
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
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
Renamed from dispatcher/config.go (Browse further)