I am getting authentication failures for MD5 passwords from a test external database. Plain text password works perfectly fine.
Here's what I've done in my config file:
Code: Select all
$Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::DB';
$Self->{'Customer::AuthModule::DB::DSN'} = 'DBI:mysql:database=test.db;host=localhost';
$Self->{'Customer::AuthModule::DB::User'} = 'test-otrs';
$Self->{'Customer::AuthModule::DB::Password'} = '************';
$Self->{'Customer::AuthModule::DB::Table'} = 'tblclients';
$Self->{'Customer::AuthModule::DB::CustomerKey'} = 'email';
$Self->{'Customer::AuthModule::DB::CustomerPassword'} = 'password';
$Self->{'Customer::AuthModule::DB::CryptType'} = 'md5';