Extend .debug.* flags and hide them by default

Allow to override DNS resolver address via the -debug.dnsoverride flag
and SMTP port via -debug.smtpport.

All flags are not available unless maddy is built using the 'debugflags'
tag.
This commit is contained in:
fox.cpp 2019-12-08 15:19:09 +03:00
parent a574b9fbb2
commit 48e21f566e
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
15 changed files with 110 additions and 21 deletions

View file

@ -12,7 +12,6 @@ import (
"encoding/hex"
"errors"
"fmt"
"net"
"os"
"path/filepath"
"strconv"
@ -145,7 +144,7 @@ func New(_, instName string, _, inlineArgs []string) (module.Module, error) {
store := &Storage{
instName: instName,
Log: log.Logger{Name: "sql"},
resolver: net.DefaultResolver,
resolver: dns.DefaultResolver(),
}
if len(inlineArgs) != 0 {
if len(inlineArgs) == 1 {