My escalation notify before is not working

Moderator: crythias

Locked
pluwum
Znuny newbie
Posts: 33
Joined: 23 Oct 2012, 16:36
Znuny Version: 3.1.6
Real Name: patrick
Company: muk

My escalation notify before is not working

Post by pluwum »

Hi once again. My escalation notify before is not working even after making changes to generic-agent.pm.
Does anyone know how i can solve this? .. FYI ...i am a newbie!!!!!!!



generic-agent.pm looks like this after uncommenting these lines

use vars qw($VERSION @ISA @EXPORT %Jobs);
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(%Jobs);
$VERSION = qw($Revision: 1.15 $)[1];

# -----------------------------------------------------------------------
# config options
# -----------------------------------------------------------------------
%Jobs = (

# GenericAgent job that sends escalation notifications.
# Activate this if you want to use these notifications in your system.
'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',
},
},

# insert your jobs (see Kernel/Config/GenericAgent.pm.examples)
);
# -----------------------------------------------------------------------
# end of config options
# -----------------------------------------------------------------------
1;
"GenericAgent.pm" 54L, 1759C
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: My escalation notify before is not working

Post by jojo »

check if your cronjobs are running
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
pluwum
Znuny newbie
Posts: 33
Joined: 23 Oct 2012, 16:36
Znuny Version: 3.1.6
Real Name: patrick
Company: muk

Re: My escalation notify before is not working

Post by pluwum »

jojo wrote:check if your cronjobs are running
I've checked it. Its running.
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: My escalation notify before is not working

Post by jojo »

do you have a warning level configured per Escalation?
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
pluwum
Znuny newbie
Posts: 33
Joined: 23 Oct 2012, 16:36
Znuny Version: 3.1.6
Real Name: patrick
Company: muk

Re: My escalation notify before is not working

Post by pluwum »

jojo wrote:do you have a warning level configured per Escalation?
Yes, it is configured per Escalation ...(i.e supposed to notify for each escalation).
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: My escalation notify before is not working

Post by jojo »

does the agent have the queue of the ticket in "My Queues"
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
pluwum
Znuny newbie
Posts: 33
Joined: 23 Oct 2012, 16:36
Znuny Version: 3.1.6
Real Name: patrick
Company: muk

Re: My escalation notify before is not working

Post by pluwum »

jojo wrote:does the agent have the queue of the ticket in "My Queues"
yes they are in my queue
Locked