target/smtp: Fix-up default value for tls_client

This commit is contained in:
fox.cpp 2025-03-09 15:39:22 +03:00
parent 0e953a824b
commit 63420d1bef
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -121,7 +121,7 @@ func (u *Downstream) Init(cfg *config.Map) error {
return nil, nil
}, saslAuthDirective, &u.saslFactory)
cfg.Custom("tls_client", true, false, func() (interface{}, error) {
return tls.Config{}, nil
return &tls.Config{}, nil
}, tls2.TLSClientBlock, &u.tlsConfig)
cfg.Duration("connect_timeout", false, false, 5*time.Minute, &u.connectTimeout)
cfg.Duration("command_timeout", false, false, 5*time.Minute, &u.commandTimeout)