mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
check/dnsbl: Fix typo in *_threshold directive names
This commit is contained in:
parent
8249d9a22a
commit
e890b96e81
1 changed files with 3 additions and 3 deletions
|
@ -72,8 +72,8 @@ func (bl *DNSBL) InstanceName() string {
|
|||
func (bl *DNSBL) Init(cfg *config.Map) error {
|
||||
cfg.Bool("debug", false, false, &bl.log.Debug)
|
||||
cfg.Bool("check_early", false, false, &bl.checkEarly)
|
||||
cfg.Int("quarantine_threadhold", false, false, 1, &bl.quarantineThres)
|
||||
cfg.Int("reject_threadhold", false, false, 9999, &bl.rejectThres)
|
||||
cfg.Int("quarantine_threshold", false, false, 1, &bl.quarantineThres)
|
||||
cfg.Int("reject_threshold", false, false, 9999, &bl.rejectThres)
|
||||
cfg.AllowUnknown()
|
||||
unknown, err := cfg.Process()
|
||||
if err != nil {
|
||||
|
@ -195,7 +195,7 @@ func (bl *DNSBL) testList(listCfg List) {
|
|||
return
|
||||
}
|
||||
|
||||
// 2. IPv4-based DNSxLs MUST NOT contain an entry for 127.0.0.1.
|
||||
// 2. IPv4-based DNSxLs MUST NOT contain an entry for ::FFFF:7F00:1
|
||||
mustNotIP := net.ParseIP("::FFFF:7F00:1")
|
||||
err = checkIP(context.Background(), bl.resolver, listCfg, mustNotIP)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue