AuthModule : Authentication failure with MD5

Moderator: crythias

Locked
hitechunited
Znuny newbie
Posts: 6
Joined: 15 Aug 2013, 02:06
Znuny Version: 3.2.9

AuthModule : Authentication failure with MD5

Post by hitechunited »

Hi all

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';
Thank you in advance.
Locked