hi,
i do not undestand the term "Notify by " inside each queue scalation time.
it means a notification by email?
how it works.
Thanks
notify by percentage
Moderator: crythias
notify by percentage
OTRS 2.4.7 on Linux with MySQL database
Re: notify by percentage
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.
-
- Znuny newbie
- Posts: 4
- Joined: 08 Jan 2011, 11:13
- Znuny Version: 2.4
- Location: Slovakia, Kosice
Re: notify by percentage
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?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.
Thanks
Re: notify by percentage
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;
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;
-
- Znuny newbie
- Posts: 4
- Joined: 08 Jan 2011, 11:13
- Znuny Version: 2.4
- Location: Slovakia, Kosice
Re: notify by percentage
OK, now it works...thank you