mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
auth/ldap: Fix "bind unauth" config directive parsing
UnauthenticatedBind accept a string argument since some go-ldap version. A breaking change that was not detected on version upgrade, apparently. See #529.
This commit is contained in:
parent
1463886fc2
commit
f8bad12434
1 changed files with 9 additions and 2 deletions
|
@ -107,7 +107,14 @@ func readBindDirective(c *config.Map, n config.Node) (interface{}, error) {
|
||||||
case "off":
|
case "off":
|
||||||
return func(*ldap.Conn) error { return nil }, nil
|
return func(*ldap.Conn) error { return nil }, nil
|
||||||
case "unauth":
|
case "unauth":
|
||||||
return (*ldap.Conn).UnauthenticatedBind, nil
|
if len(n.Args) == 2 {
|
||||||
|
return func(c *ldap.Conn) error {
|
||||||
|
return c.UnauthenticatedBind(n.Args[1])
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
return func(c *ldap.Conn) error {
|
||||||
|
return c.UnauthenticatedBind("maddy-auth")
|
||||||
|
}, nil
|
||||||
case "plain":
|
case "plain":
|
||||||
if len(n.Args) != 3 {
|
if len(n.Args) != 3 {
|
||||||
return nil, fmt.Errorf("auth.ldap: username and password expected for plaintext bind")
|
return nil, fmt.Errorf("auth.ldap: username and password expected for plaintext bind")
|
||||||
|
@ -145,7 +152,7 @@ func (a *Auth) newConn() (*ldap.Conn, error) {
|
||||||
|
|
||||||
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 {
|
||||||
a.log.Msg("cannot contact directory server", err, "url", u)
|
a.log.Error("cannot contact directory server", err, "url", u)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue