mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Merge pull request #580 from Litrop/master
Clone tlsCfg with ServerName because ServerName is needed by StartTLS
This commit is contained in:
commit
13a210f2a4
1 changed files with 1 additions and 1 deletions
|
@ -147,8 +147,8 @@ func (a *Auth) newConn() (*ldap.Conn, error) {
|
||||||
return nil, fmt.Errorf("auth.ldap: invalid server URL: %w", err)
|
return nil, fmt.Errorf("auth.ldap: invalid server URL: %w", err)
|
||||||
}
|
}
|
||||||
hostname := parsedURL.Host
|
hostname := parsedURL.Host
|
||||||
|
a.tlsCfg.ServerName = strings.Split(hostname, ":")[0]
|
||||||
tlsCfg = a.tlsCfg.Clone()
|
tlsCfg = a.tlsCfg.Clone()
|
||||||
a.tlsCfg.ServerName = hostname
|
|
||||||
|
|
||||||
conn, err = ldap.DialURL(u, ldap.DialWithDialer(a.dialer), ldap.DialWithTLSConfig(tlsCfg))
|
conn, err = ldap.DialURL(u, ldap.DialWithDialer(a.dialer), ldap.DialWithTLSConfig(tlsCfg))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue