Set default queue

Moderator: crythias

Locked
mmendoza
Znuny newbie
Posts: 7
Joined: 23 Oct 2014, 21:23
Znuny Version: 3.3.4

Set default queue

Post by mmendoza »

Is there any way to set up a default queue to an specifyc backend source?

The scenario is like this,

We have set many LDAP backends and we need tickets to go to an specific queue,

AD1 --> Queue 1.
AD2 --> Queue 2.
AD3 --> Queue 3.

The agents are the same for all queues, but the customers don't. I need customers from AD1 only see Tickets from Queue 1, customers from AD2 only see Queue 2, and so..

Is there a valid way to do this?

Thanks in advance.

Marcelo.
OTRS 3.3.4 - Debian Linux - MySql - Apache - Firefox
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Set default queue

Post by crythias »

no. ACL or postmaster filter on what is visible.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
mmendoza
Znuny newbie
Posts: 7
Joined: 23 Oct 2014, 21:23
Znuny Version: 3.3.4

Re: Set default queue

Post by mmendoza »

Ok, and what about making a filter by the coments of the customers, for ex.

Customers of AD1 have a Finances as comment,
Customers of AD2 have Comercial as comment,

Making an ACL of that is viable?

Could something like this work?

Code: Select all

$Self->{TicketAcl}->{'200-ACL-Filtering'} = {
       Properties => {
                CustomerUser => {
                         UserComment => 'Finances',
                        ],
                },
        },
        Possible => {
                Ticket => {
                        Queue => 'Queue1',
                },
        },
};
I've also try this

Code: Select all

$Self->{TicketAcl}->{'200-ACL-Filtering'} = {
       Properties => {
                CustomerUser = {
                        Group_rw => [
                                'AD1',
                        ],
                },
        },
        Possible => {
                Ticket => {
                        Queue => 'Queue1',
                },
        },
};
OTRS 3.3.4 - Debian Linux - MySql - Apache - Firefox
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Set default queue

Post by crythias »

no ACL on comments. If you must, use Customer Group Support.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
mmendoza
Znuny newbie
Posts: 7
Joined: 23 Oct 2014, 21:23
Znuny Version: 3.3.4

Re: Set default queue

Post by mmendoza »

I have already tried that, I have already added a customer to a group, but i don't know how to filter by that group. If a create a ticket from customers web page it's ok, the tickets were created in the customer selected queue, but if i send an email from the customers email the ticket was created on the POP3 email queue selected.
OTRS 3.3.4 - Debian Linux - MySql - Apache - Firefox
Locked