Password-reset for customer-users

Moderator: crythias

Locked
mwilhelmi
Znuny newbie
Posts: 18
Joined: 07 Oct 2018, 23:37
Znuny Version: 6.2.2
Real Name: Marc Wilhelmi
Company: integrate-it Netzwerke GmbH

Password-reset for customer-users

Post by mwilhelmi »

Hi,

can we activate a password-reset for customer-users?
We use LDAP-backends as well as the local OTRS-backend and wat enable a password-reset via e-mail for users of the local backend.
is that possible?
skullz
Znuny superhero
Posts: 658
Joined: 24 Feb 2012, 03:58
Znuny Version: LTS and Features
Real Name: Mo Azfar
Location: Kuala Lumpur, MY
Contact:

Re: Password-reset for customer-users

Post by skullz »

dint have a time to try this but..

try change AD as second auth

$Self->{'Customer::AuthModule1'} = 'Kernel::System::CustomerAuth::LDAP';

*1 means it wont overwrite the default system which is Customer::AuthModule => DB

Good luck..
My Github
OTRS CE/LTS Discord Channel
Cant Update Package Anymore ? Check This

Professional OTRS, Znuny & OTOBO services: efflux.de/en
Free and premium add-ons: English
mwilhelmi
Znuny newbie
Posts: 18
Joined: 07 Oct 2018, 23:37
Znuny Version: 6.2.2
Real Name: Marc Wilhelmi
Company: integrate-it Netzwerke GmbH

Re: Password-reset for customer-users

Post by mwilhelmi »

Ok, we have alltogether 7 LDAP-backends and someone put the local DB to number 10:

$Self->{'Customer::AuthModule10'} = 'Kernel::System::CustomerAuth::DB';
$Self->{'Customer::AuthModule::DB::Table10'} = 'customer_user';
$Self->{'Customer::AuthModule::DB::CustomerKey10'} = 'login';
$Self->{'Customer::AuthModule::DB::CustomerPassword10'} = 'pw';

# LDAP
$Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::LDAP';
.....

# LDAP1
$Self->{'Customer::AuthModule1'} = 'Kernel::System::CustomerAuth::LDAP';
....

should I cange the local DB back to
$Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::DB';

and add a higher number to the first LDAP-backend?
root
Administrator
Posts: 4251
Joined: 18 Dec 2007, 12:23
Znuny Version: Znuny and Znuny LTS
Real Name: Roy Kaldung
Company: Znuny
Contact:

Re: Password-reset for customer-users

Post by root »

mwilhelmi wrote: 16 Apr 2020, 13:50 Hi,

can we activate a password-reset for customer-users?
We use LDAP-backends as well as the local OTRS-backend and wat enable a password-reset via e-mail for users of the local backend.
is that possible?
Hi,

Have you already tried it?

- Roy
Znuny and Znuny LTS running on CentOS / RHEL / Debian / SLES / MySQL / PostgreSQL / Oracle / OpenLDAP / Active Directory / SSO

Use a test system - always.

Do you need professional services? Check out https://www.znuny.com/

Do you want to contribute or want to know where it goes ?
Locked