I'm trying to set the Config.pm file to authenticate users three different domains, enter the following configuration to authenticate against a domain.
Code: Select all
$Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::LDAP';
$Self->{'Customer::AuthModule::LDAP::Host'} = 'brspopl001.dedic-br.dedic.corp';
$Self->{'Customer::AuthModule::LDAP::BaseDN'} = 'dc=dedic-br,dc=dedic,dc=corp';
$Self->{'Customer::AuthModule::LDAP::UID'} = 'sAMAccountName';
$Self->{'Customer::AuthModule::LDAP::SearchUserDN'} = 'CN=OTRS Homolog,OU=ger_eng,OU=services,OU=all_users,DC=dedic,DC=corp';
$Self->{'Customer::AuthModule::LDAP::SearchUserPw'} = '********';
What configuration to include other domains of AD?
Thank you!