maddy/check/action.go
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

47 lines
1.1 KiB
Go

package check
import (
"github.com/foxcpp/maddy/config"
"github.com/foxcpp/maddy/module"
)
type FailAction struct {
Quarantine bool
Reject bool
}
func FailActionDirective(m *config.Map, node *config.Node) (interface{}, error) {
if len(node.Args) == 0 {
return nil, m.MatchErr("expected at least 1 argument")
}
if len(node.Children) != 0 {
return nil, m.MatchErr("can't declare block here")
}
switch node.Args[0] {
case "reject", "quarantine", "ignore":
if len(node.Args) > 1 {
return nil, m.MatchErr("too many arguments")
}
return FailAction{
Reject: node.Args[0] == "reject",
Quarantine: node.Args[0] == "quarantine",
}, nil
default:
return nil, m.MatchErr("invalid action")
}
}
// Apply merges the result of check execution with action configuration specified
// in the check configuration.
func (cfa FailAction) Apply(originalRes module.CheckResult) module.CheckResult {
if originalRes.RejectErr == nil {
return originalRes
}
originalRes.Quarantine = cfa.Quarantine || originalRes.Quarantine
if !cfa.Reject {
originalRes.RejectErr = nil
}
return originalRes
}