Is it possible to prevent certain groups of users from seeing the Reply drop-down on inbound email ticket articles? Can it be done with an ACL?
If so, how do I set that up?
Tom
Hide Email Reply
Moderator: crythias
Re: Hide Email Reply
yes, use
in the Possible section of the ACL
Code: Select all
Action => {
AgentTicketLock => 1,
AgentTicketZoom => 1,
AgentTicketClose => 1,
AgentTicketPending => 1,
AgentTicketNote => 1,
AgentTicketHistory => 1,
AgentTicketPriority => 1,
AgentTicketFreeText => 1,
AgentTicketHistory => 1,
AgentTicketCompose => 0,
AgentTicketBounce => 1,
AgentTicketPrint => 1,
AgentTicketForward => 1,
AgentTicketPrint => 1,
AgentTicketPhone => 1,
AgentTicketPhoneOutbound => 1,
AgentTicketCustomer => 1,
AgentTicketMove => 1,
AgentTicketOwner => 1,
AgentTicketResponsible => 1,
AgentTicketWatcher => 1,
AgentLinkObject => 1,
},
in the Possible section of the ACL
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
-
- Znuny advanced
- Posts: 103
- Joined: 14 Nov 2012, 21:59
- Znuny Version: 3.1.6
- Real Name: Tom Nieman
- Company: WorkForce Software
Re: Hide Email Reply
Thanks