mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
stateless_check: Add 'ignore' option for fail_action
Check failures are still logged, this allows testing the check before actually enforcing it (with fail_action reject or fail_action quarantine).
This commit is contained in:
parent
7583e418cb
commit
1b83a43021
2 changed files with 4 additions and 1 deletions
|
@ -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")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue