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

@ -0,0 +1,9 @@
//+build debugflags
package remote
import "flag"
func init() {
flag.StringVar(&smtpPort, "debug.smtpport", "25", "SMTP port to use for connections in tests")
}