mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
target/smtp: Fix-up default value for tls_client
This commit is contained in:
parent
0e953a824b
commit
63420d1bef
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue