
Is it possible to define multiple Customer::AuthModules in Config.pm? I tried to postfix them with numbers, like $Self{'Customer::AuthModule1'} but that didn't work at all.
Try this:
http://faq.otrs.org/otrs/public.pl?Action=PublicFAQ&ItemID=219
Thank you, that information was helpful. If anybody else has the same needs, this is what you have to do in Config.pm. # LDAP authentication $Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::LDAP'; $Self->{'Customer::AuthModule::LDAP::Host'} = '192.168.1.1'; $Self->{'Customer::AuthModule::LDAP::BaseDN'} = 'ou=company, dc=company, dc=com'; $Self->{'Customer::AuthModule::LDAP::UID'} = 'sAMAccountName'; $Self->{'Customer::AuthModule::LDAP::SearchUserDN'} = 'user'; $Self->{'Customer::AuthModule::LDAP::SearchUserPw'} = 'pass'; # This is the auth. module againt the otrs db $Self->{'Customer::AuthModule2'} = 'Kernel::System::CustomerAuth::DB'; $Self->{'Customer::AuthModule::DB::Table2'} = 'customer_user'; $Self->{'Customer::AuthModule::DB::CustomerKey2'} = 'login'; $Self->{'Customer::AuthModule::DB::CustomerPassword2'} = 'pw'; -- Lars