outposts/ldap: add sAMAccountName field for compatibility
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
281a460960
commit
1f821521c6
|
@ -122,6 +122,10 @@ func (pi *ProviderInstance) UserEntry(u api.User) *ldap.Entry {
|
||||||
Name: "cn",
|
Name: "cn",
|
||||||
Values: []string{u.Username},
|
Values: []string{u.Username},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "sAMAccountName",
|
||||||
|
Values: []string{u.Username},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Name: "uid",
|
Name: "uid",
|
||||||
Values: []string{u.Uid},
|
Values: []string{u.Uid},
|
||||||
|
|
Reference in New Issue