forked from forgejo/forgejo
revert simple LDAP userDN and update example
This commit is contained in:
parent
e303d74ab6
commit
6a1907d994
5 changed files with 6 additions and 6 deletions
|
@ -84,8 +84,8 @@ func (ls *Source) FindUserDN(name string) (string, bool) {
|
|||
func (ls *Source) SearchEntry(name, passwd string, directBind bool) (string, string, string, bool, bool) {
|
||||
var userDN string
|
||||
if directBind {
|
||||
log.Trace("LDAP will bind directly via UserDN: %s", ls.UserDN)
|
||||
userDN = ls.UserDN
|
||||
log.Trace("LDAP will bind directly via UserDN template: %s", ls.UserDN)
|
||||
userDN = fmt.Sprintf(ls.UserDN, name)
|
||||
} else {
|
||||
log.Trace("LDAP will use BindDN.")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue