diff --git a/config.go b/config.go index 5d11809..fe5c2be 100644 --- a/config.go +++ b/config.go @@ -167,7 +167,7 @@ func checkFailActionDirective(m *config.Map, node *config.Node) (interface{}, er } switch node.Args[0] { - case "reject", "quarantine": + case "reject", "quarantine", "ignore": if len(node.Args) > 1 { return nil, m.MatchErr("too many arguments") } diff --git a/maddy.conf.5.scd b/maddy.conf.5.scd index 5ad7bd6..ab4e01c 100644 --- a/maddy.conf.5.scd +++ b/maddy.conf.5.scd @@ -921,6 +921,9 @@ implicitly so you use then without an explicit block definition. All modules in this list support the following directives: - debug Enable verbose logging for this module. +- fail_action ignore + Ignore the check failure, useful for testing deployments to see + how useful it is. - fail_action reject Reject the message instead of quarantining it. - fail_action quarantine