auth/ldap: Send empty username by default when doing unauthenticated bind

Requested by maldridge to match ldapsearch behavior.
This commit is contained in:
fox.cpp 2022-09-11 20:42:42 +03:00
parent f8bad12434
commit d54237f856
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -113,7 +113,7 @@ func readBindDirective(c *config.Map, n config.Node) (interface{}, error) {
}, nil
}
return func(c *ldap.Conn) error {
return c.UnauthenticatedBind("maddy-auth")
return c.UnauthenticatedBind("")
}, nil
case "plain":
if len(n.Args) != 3 {