notify by percentage

Moderator: crythias

Locked
tl06799
Znuny newbie
Posts: 6
Joined: 29 Aug 2010, 09:28
Znuny Version: 2.4

notify by percentage

Post by tl06799 »

hi,
i do not undestand the term "Notify by " inside each queue scalation time.
it means a notification by email?
how it works.
Thanks
OTRS 2.4.7 on Linux with MySQL database
Mothra
Znuny expert
Posts: 189
Joined: 26 Oct 2010, 15:04
Znuny Version: 3.2.11

Re: notify by percentage

Post by Mothra »

It means that within x% of the escalation time, you will get an advance warning email, informing you when the ticket will escalate.
OTRS 3.2.11 on Centos 6.4 with MySQL 5.0. Agents and internal customers authenticate via Active Directory.
EwingSK
Znuny newbie
Posts: 4
Joined: 08 Jan 2011, 11:13
Znuny Version: 2.4
Location: Slovakia, Kosice

Re: notify by percentage

Post by EwingSK »

Mothra wrote:It means that within x% of the escalation time, you will get an advance warning email, informing you when the ticket will escalate.
OK, but i would like to know, how it will notify? By email? Because it does not work in my environment.Should i set it somewhere? Can you help me?

Thanks
jaysacco
Znuny newbie
Posts: 4
Joined: 19 May 2010, 20:26
Znuny Version: 2.4.7

Re: notify by percentage

Post by jaysacco »

I'm running OTRS 2.4.7. In order to get the escalation emails to be sent, I had to do the following:
In your OTRS installation, edit <install directory>\OTRS\Kernel\Config\GenericAgent.pm
Under config options, uncomment out the lines underneath the line: %Jobs = (
It should end up looking like this:
# -----------------------------------------------------------------------
# config options
# -----------------------------------------------------------------------
%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)

);
# -----------------------------------------------------------------------
# end of config options
# -----------------------------------------------------------------------
1;
EwingSK
Znuny newbie
Posts: 4
Joined: 08 Jan 2011, 11:13
Znuny Version: 2.4
Location: Slovakia, Kosice

Re: notify by percentage

Post by EwingSK »

OK, now it works...thank you
Locked