There is a need for us to configure our OTRS installation to send email alerts to agents if their tickets are on verge of escalation. Searching on google, I found some documents and how to, and found that I already have the configuration in place but it still does not work. Following is the configuration in /opt/otrs/Kernel/Config/GenericAgent.pm
Code: Select all
'send escalation notifications' => {
Escalation => 1,
# # new ticket properties
New => {
Module => 'Kernel::System::GenericAgent::NotifyAgentGroupOfCustomQueue',
},
},
# GenericAgent job that triggers escalation forewarn and escalation start events.
# Activate this if you want to use these events in your system.
'trigger escalation events' => {
Escalation => 1,
# # new ticket properties
New => {
Module => 'Kernel::System::GenericAgent::TriggerEscalationStartEvents',
},
},