mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 05:37:34 +03:00
auth/ldap: Send empty username by default when doing unauthenticated bind
Requested by maldridge to match ldapsearch behavior.
This commit is contained in:
parent
f8bad12434
commit
d54237f856
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue