Closed reind33r closed 1 day ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 52.65%. Comparing base (
798c411
) to head (bb2c0c9
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
It is indeed a typo.
checks
and modifiers
are names of group modules that allow defining reusable configurations for check
and modify
directives correspondingly:
checks inbound_filters {
dkim
}
modifiers inbound_mutation {
replace_rcpt regexp "asd" "asd"
}
smtp tcp://127.0.0.1:2525 {
check &inbound_filters
modify &inbound_mutation
reject
}
Thanks!
Currently, to add rspamd, the docs suggest to
Adding this block in
local_routing
results in a failure to start, because in this context onlycheck
is valid.(I see that
checks
exist at top-level, but if we mentionlocal_routing
and appropriatecheck
block, it makes more sense to me that the code block is alsocheck
)