
Hello! I'm just new to OTRS and I'm trying to configure it for our needs. As our customers should be authenticated using LDAP and internal OTRS database, I realised that it isn't possible to use multiple Authentication Modules for customers. So I've done a very simple AuthModule called Kernel::System::CustomerAuth::Multiple which uses multiple AuthModules (like DB, LDAP, Radius, ...) to authenticate customers. Usage is very simple: Copy Multiple.pm to Kernel/System/CustomerAuth/Multiple.pm. You'll find it at http://www.fh-trier.de/~beckerr/OTRS-CustomerAuth/Multiple.pm To use CustomerAuth::DB and CustomerAuth::LDAP modify your Config.pm like this: $Self->{'Customer::AuthModule'} = 'Kernel::System::CustomerAuth::Multiple'; $Self->{'Customer::AuthModule::Multiple::Modules'}='Kernel::System::CustomerAuth::DB Kernel::System::CustomerAuth::LDAP'; So CustomerAuth::Multiple tries to authenticat users using CustomerAuth::DB first and, if this fails, it trys CustomerAuth::LDAP. Regards, Ralf

Hi, all, I'm having a hard time undersanding escalations.... I see the chapter about time settings in our admin manual on, but not undersanding the example : %Jobs = ( # -- # [name of job] -> send escalation notifications # -- ?send escalation notifications? => { Escalation => 1, # new ticket properties New => { Module => ?Kernel::System::GenericAgent:: NotifyAgentGroupOfCustomQueue?, }, }, # insert your jobs (see Kernel/Config/GenericAgent.pm.examples) I do not work the example of GenericAgent.p.m. with the part of escalation. I defined in this p.m. and is not executed when the time of escalation in ticket is negative. Help please!!!
participants (2)
-
Gonzalo Balatti
-
Ralf Becker