Automatic Escalation with ACL (or with Generic Agent)

Moderator: crythias

Locked
Romaing
Znuny newbie
Posts: 60
Joined: 30 Mar 2012, 15:20
Znuny Version: 3.1.5

Automatic Escalation with ACL (or with Generic Agent)

Post by Romaing »

Hello everyone, it's me again 8)

So in my OTRS config, the customer (aka the 'normal' staff) will be using the customer interface, and the IT staff will ahave acces the admin panel.

The customer will have a very reduced panel for ticket, only the most basic stuff. But for a few ticket categories these tickets should be classified as urgents and escalated right away, so they're really on top.

What would be the best way to do that ? I guess i could use the generic agent to do it, but nothing in the ticket action panel really "pops up" for me for escalating. Also i don't really like having to run this GA every minute for something that would be needed on rare occasions (but when they do happen, it's super important). I see that i can create ACL in OTRS too but before i dive into this, is it really a good way ?

Best regards,
Romain

[edit]: so for example i want a ticket to be escalated because it has been created in the Y queue.
Any chance you could give an example of an ACL that would automatically escalate it ? :)

Could something like that work ? (i know it doesn't but just to give an example...)

Code: Select all

$Self->{TicketAcl}->{'ACL-Name-1'} = {
    # match properties
    Properties => {
    # files to be escalated
    Ticket => {
    QueueID => ['16', '17', '18'],
    }
    },
    # possible options (white list)
    Possible => {
    Ticket => {
    State => ['Escalated'],
	},
	};
OTRS 3.1.5 on Ubuntu 12.04
Database: MySQL
Module: FAQ
Romaing
Znuny newbie
Posts: 60
Joined: 30 Mar 2012, 15:20
Znuny Version: 3.1.5

Re: Automatic Escalation with ACL (or with Generic Agent)

Post by Romaing »

up ?
OTRS 3.1.5 on Ubuntu 12.04
Database: MySQL
Module: FAQ
Mydnyte
Znuny newbie
Posts: 25
Joined: 23 Feb 2012, 01:03
Znuny Version: 3x1x1
Real Name: Jeremy

Re: Automatic Escalation with ACL (or with Generic Agent)

Post by Mydnyte »

I would set it up so that any ticket with a priority of 5- Very High gets dropped into a specific queue with a 10 minute escalation notification.
OTRS 3.2.10 - FAQ - KUBUNTU 13.04 - MySQL 5.5 - Apache2.2
Locked