mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
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.
47 lines
1.1 KiB
Go
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
|
|
}
|