Merge pull request #580 from Litrop/master

Clone tlsCfg with ServerName because ServerName is needed by StartTLS
This commit is contained in:
Max Mazurov 2023-05-04 21:50:36 +03:00 committed by GitHub
commit 13a210f2a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -147,8 +147,8 @@ func (a *Auth) newConn() (*ldap.Conn, error) {
return nil, fmt.Errorf("auth.ldap: invalid server URL: %w", err)
}
hostname := parsedURL.Host
a.tlsCfg.ServerName = strings.Split(hostname, ":")[0]
tlsCfg = a.tlsCfg.Clone()
a.tlsCfg.ServerName = hostname
conn, err = ldap.DialURL(u, ldap.DialWithDialer(a.dialer), ldap.DialWithTLSConfig(tlsCfg))
if err != nil {