we got a little problem with our ORTS LDAP query for agents and customer.
If the user is directly assigned to the group (GroupDN) it works great, but if the user is member of a sub-group in the GroupDN OTRS will not recognize it.
Anybody an idea to fix this problem?
Greetings
Code: Select all
$Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::LDAP';
$Self->{'Customer::AuthModule::LDAP::Host'} = 'domain.tld';
$Self->{'Customer::AuthModule::LDAP::BaseDN'} = 'dc=domain, dc=tld';
$Self->{'Customer::AuthModule::LDAP::UID'} = 'sAMAccountName';
$Self->{'Customer::AuthModule::LDAP::GroupDN'} = 'CN=OTRS-USERGROUP,OU=GROUPS,DC=domain,DC=tld';
$Self->{'Customer::AuthModule::LDAP::AccessAttr'} = 'member';
$Self->{'Customer::AuthModule::LDAP::UserAttr'} = 'DN';
$Self->{'Customer::AuthModule::LDAP::SearchUserDN'} = 'CN=OTRS-LDAP-READ,OU=ACCOUNTS,DC=domain,DC=tld';
$Self->{'Customer::AuthModule::LDAP::SearchUserPw'} = 'Password';
$Self->{'Customer::AuthModule::LDAP::Params'} = {
port => 389,
timeout => 120,
async => 0,
version => 3,
};