Hello,
I am trying to setup ldap for my RT instance (5.0.7). I’ve gotten the connection to work but I am having issues searching the OU.
Here is the ldap settings:
Set($LDAPBase, 'dc=my,dc=ad,dc=server');
Set($LDAPFilter, '(&(ou=users,ou=companyname))');
Set($LDAPMapping, {Name => 'uid', # required
EmailAddress => 'mail',
RealName => 'cn',
WorkPhone => 'telephoneNumber',
Organization => 'departmentName',
});
This is how our AD environment is setup
- base
** company name
*** users
*** groups
I’ve tried using groups in the groups ou with no luck, I’ve tried the users ou as well. Any ideas?