mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
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:
parent
a574b9fbb2
commit
48e21f566e
15 changed files with 110 additions and 21 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue