i'm trying to configure an ACL in an OTRS 3.3.6 test environment. I need to hide (using PossibleNot) some Owner and some Responsible in AgentTicketEmail.
In OTRS documentation i found some useful information and following the instruction found there i was able to create a workig ACL to hide service but not to hide Owner or Resposible in new email ticket window.
THIS is THE Woriking ACL for Services:
Code: Select all
$Self->{TicketAcl}->{'100-ACL-TEST'} = {
# match properties
Properties => {
# the used frontend module
Frontend => {
Action => ['AgentTicketPhone', 'AgentTicketEmail'],
},
Queue => {
Name => ['Tende'],
},
},
#
PossibleNot => {
Ticket => {
Service => ['Altro'],
},
},
};
[color=#0040BF]THIS is THE [b]NOT Woriking[/b] ACL for NewOwner:[/color]
$Self->{TicketAcl}->{'100-ACL-TEST'} = {
# match properties
Properties => {
# the used frontend module
Frontend => {
Action => ['AgentTicketPhone', 'AgentTicketEmail'],
},
Queue => {
Name => ['Tende'],
},
},
PossibleNot => {
# possible ticket options (white list)
Ticket => {
NewOwner=> ['testagent'],
},
},
};
Code: Select all
$Self->{TicketAcl}->{'100-ACL-TEST'} = {
# match properties
Properties => {
# the used frontend module
Frontend => {
Action => ['AgentTicketPhone', 'AgentTicketEmail'],
},
Queue => {
Name => ['Tende'],
},
},
PossibleNot => {
# possible ticket options (white list)
Ticket => {
NewResponsible=> ['testagent'],
},
},
};
Also tried Owner and Responsible instead of NewOwner and NewResponsible but nothing ....
Please, can someone help me to get Owner and Responsible working in Possible and PossibleNot?
Thank you in advanced for your help
Roberto