How can i
access LDAP URI of ldap_search() results in routing script?
I need to do recursive search in company directory within persons that belong to groups,
i need to get group id without storing groupid as person attribute, but as an element of
resulting URL.
Query base name: dc=example,dc=com.
Query result is cn=user1,ou=group1,dc=example,dc=com.
I can easily get user1 attributes, but how to get ou?
You can always change the Base DN in the ldap_search string with the new base, so
store the result in a variable, cut out the ou= part and change the base dn.
if you can get the result in a variable, then you can use
transformations to get the value of 'ou' -- hope i understood correctly
what you need:
Problem was my misunderstanding of LDAP concept. The answer is that 'ou' is
attribute of user and can be fetched to kamailio variable as usually.