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
109 B
Go
11 lines
109 B
Go
//+build debugflags
|
|
|
|
package maddy
|
|
|
|
import (
|
|
_ "net/http/pprof"
|
|
)
|
|
|
|
func init() {
|
|
enableDebugFlags = true
|
|
}
|