Hello!
Can somebody explain me how it possible to make SSO and local OTRS DB work together? In order to automatically logged user can LogOut and then LogIn as another user.
1st case Only AD and DB works (but no SSO):
$Self->{'AuthModule1'} = 'Kernel::System::Auth::HTTPBasicAuth';
$Self->{'AuthModule::HTTPBasicAuth::ReplaceRegExp1'} ='@DOMAIN.RU';
$Self->{'AuthModule2'} = 'Kernel::System::Auth::LDAP';
....
$Self->{'AuthModule3'} = 'Kernel::System::Auth::DB';
2nd case Only SSO works, but no local DB:
$Self->{'AuthModule'} = 'Kernel::System::Auth::HTTPBasicAuth';
$Self->{'AuthModule::HTTPBasicAuth::ReplaceRegExp'} ='@DOMAIN.RU';
$Self->{'AuthModule1'} = 'Kernel::System::Auth::LDAP';
....
$Self->{'AuthModule2'} = 'Kernel::System::Auth::DB';
Thanks a lot!
SSO LDAP and DB together
Moderator: crythias