mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
now using "%u" pattern as default for ldap_uids (EJAB-1203)
This commit is contained in:
parent
7d497615a1
commit
9d2fd3e52c
@ -53,6 +53,8 @@ subfilter({UIDAttr}) ->
|
|||||||
|
|
||||||
%% Not tail-recursive, but it is not very terribly.
|
%% Not tail-recursive, but it is not very terribly.
|
||||||
%% It stops finding on the first not empty value.
|
%% It stops finding on the first not empty value.
|
||||||
|
find_ldap_attrs([{Attr} | Rest], Attributes) ->
|
||||||
|
find_ldap_attrs([{Attr, "%u"} | Rest], Attributes);
|
||||||
find_ldap_attrs([{Attr, Format} | Rest], Attributes) ->
|
find_ldap_attrs([{Attr, Format} | Rest], Attributes) ->
|
||||||
case get_ldap_attr(Attr, Attributes) of
|
case get_ldap_attr(Attr, Attributes) of
|
||||||
Value when is_list(Value), Value /= "" ->
|
Value when is_list(Value), Value /= "" ->
|
||||||
|
Loading…
Reference in New Issue
Block a user