
Hi I'm trying to setup customer and agent auth against LDAP. The problem I'm facing is I have customer records in a different base DN to employees but I can't get OTRS to keep them separate I've tried this: $Self->{'Customer::AuthModule'} = 'Kernel::System::Auth::LDAP'; $Self->{'Customer::AuthModule::LDAP::BaseDN'} = 'dc=customers,dc=foo,dc=com'; $Self->{'AuthModule'} = 'Kernel::System::Auth::LDAP'; $Self->{'AuthModule::LDAP::Host'} = 'localhost'; $Self->{'AuthModule::LDAP::BaseDN'} = 'dc=employees,dc=foo,dc=com'; But it tries to auth everything against dc=employees. The Customer User data section is happy with a different base DN, but not the Auth. Anyone got any ideas?