mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +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
9
internal/target/remote/debugflags.go
Normal file
9
internal/target/remote/debugflags.go
Normal 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")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue