I am trying to configure the customer web so the correct queues are presented for the rigth customer and group when creating a new ticket. I don't manage to get following to work:
1. Sub queues are still visible even though I have defined them not to be.
2. I can't remove the '-' from the list of queues (to-field).
Here's my ACL:
Code: Select all
Properties => {
Frontend => {Action => ['CustomerTicketMessage'] },
User => { Group_rw => [ 'MyGroup'],},
},
PossibleNot => { Ticket => { Queue => [
'[RegExp]::', # this hides all sub-queues
'[RegExp]^AnotherGroup', #this hides just one queue#
'[RegExp]^-',] }
}
};
$Self->{TicketAcl}->{'ACL-Customer-Queues'} = {
Properties => {
Frontend => {Action => ['CustomerTicketMessage'] },
User => { Group_rw => [ 'AnotherGroup'],},
},
PossibleNot => { Ticket => { Queue => [
'[RegExp]^MyGroup', #this hides just one queue#
'[RegExp]::', # this hides all sub-queues
'[RegExp]^-',] }
}
};
Thank you in advance!