mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
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.
11 lines
176 B
Go
11 lines
176 B
Go
//+build debugflags
|
|
|
|
package dns
|
|
|
|
import (
|
|
"flag"
|
|
)
|
|
|
|
func init() {
|
|
flag.StringVar(&overrideServ, "debug.dnsoverride", "system-default", "replace the DNS resolver address")
|
|
}
|