Hide Email Reply

Moderator: crythias

Locked
tnieman
Znuny advanced
Posts: 103
Joined: 14 Nov 2012, 21:59
Znuny Version: 3.1.6
Real Name: Tom Nieman
Company: WorkForce Software

Hide Email Reply

Post by tnieman »

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
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: Hide Email Reply

Post by jojo »

yes, use

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
tnieman
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

Post by tnieman »

Thanks
Locked