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.
This commit is contained in:
fox.cpp 2019-10-19 19:12:44 +03:00
parent 9a6b0e6e31
commit ab1fdac45d
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
9 changed files with 12 additions and 389 deletions

View file

@ -64,7 +64,7 @@ func (d *MsgPipeline) Start(msgMeta *module.MsgMetadata, mailFrom string) (modul
msgMeta: msgMeta,
log: target.DeliveryLogger(d.Log, msgMeta),
}
dd.checkRunner = newCheckRunner(msgMeta, dd.log, d.quarantineScore, d.rejectScore)
dd.checkRunner = newCheckRunner(msgMeta, dd.log)
if msgMeta.OriginalRcpts == nil {
msgMeta.OriginalRcpts = map[string]string{}