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.
Set default queue
Moderator: crythias
Set default queue
OTRS 3.3.4 - Debian Linux - MySql - Apache - Firefox
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Set default queue
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
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
Re: Set default queue
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?
I've also try this
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',
},
},
};
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
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Set default queue
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
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
Re: Set default queue
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