Hide/Disable "Reply" Option

Moderator: crythias

Post Reply
vasanthsherly
Znuny newbie
Posts: 6
Joined: 06 Feb 2019, 09:33
Znuny Version: 5.0.16
Company: Futurenet Technologies India Pvt

Hide/Disable "Reply" Option

Post by vasanthsherly »

Hi,

I need to DIsable or Hide the "Reply" option in all the Queues. Need Help.

Please find the attachment

Regards
Vasanth Sherly
You do not have the required permissions to view the files attached to this post.
wurzel
Znuny guru
Posts: 3232
Joined: 08 Jul 2010, 22:25
Znuny Version: x.x.x
Real Name: Florian

Re: Hide/Disable "Reply" Option

Post by wurzel »

Hi,

check documentation chapter ACLs

Flo
OTRS 8 SILVER (Prod)
OTRS 8 auf Debian 11 (Test)
Znuny 7.x latest version testing auf Debian 11

-- Ich beantworte keine Forums-Fragen PN - No PN please

I won't answer to unfriendly users any more. A greeting and regards are just polite.
crythias
Moderator
Posts: 10169
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Hide/Disable "Reply" Option

Post by crythias »

First, you won't see Reply if:
The ticket is locked and you're not an Owner or Responsible

If you want to block this, add a [blank] group or uncheck
Frontend::Module###AgentTicketCompose
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
vasanthsherly
Znuny newbie
Posts: 6
Joined: 06 Feb 2019, 09:33
Znuny Version: 5.0.16
Company: Futurenet Technologies India Pvt

Re: Hide/Disable "Reply" Option

Post by vasanthsherly »

Hi,

I have checked the option "Frontend::Module###AgentTicketCompose" but not able to find the setting.

Please find the attachment options are available

We are using the OTRS version 4.0.9
vasanthsherly
Znuny newbie
Posts: 6
Joined: 06 Feb 2019, 09:33
Znuny Version: 5.0.16
Company: Futurenet Technologies India Pvt

Re: Hide/Disable "Reply" Option

Post by vasanthsherly »

PFA...Need help
You do not have the required permissions to view the files attached to this post.
crythias
Moderator
Posts: 10169
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Hide/Disable "Reply" Option

Post by crythias »

Edit Config Settings in Ticket → Frontend::Agent::ModuleRegistration
AgentTicketCompose.png
You do not have the required permissions to view the files attached to this post.
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
vasanthsherly
Znuny newbie
Posts: 6
Joined: 06 Feb 2019, 09:33
Znuny Version: 5.0.16
Company: Futurenet Technologies India Pvt

Re: Hide/Disable "Reply" Option

Post by vasanthsherly »

I Have found that option. In that where I should disable the "Reply" option not "Reply All".

Also, it should apply for all the otrs open tickets.
crythias
Moderator
Posts: 10169
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Hide/Disable "Reply" Option

Post by crythias »

Sorry, I don't think this is possible in version 5.

The Reply All functionality is dependent on whether there are multiple involved customers and would prevent ability be useful if only a single customer.

In version 6, this appears to be merged as one entry.

The appropriate code is in

https://github.com/OTRS/otrs/blob/be65d ... m.pm#L3125

and (I believe) I'd do is something like move

Code: Select all

               push @MenuItems, {
                    ItemType              => 'Dropdown',
                    DropdownType          => 'Reply',
                    StandardResponsesStrg => $StandardResponsesStrg,
                    Name                  => 'Reply',
                    Class                 => 'AsPopup PopupType_TicketAction',
                    Action                => 'AgentTicketCompose',
                    FormID                => 'Reply' . $Article{ArticleID},
                    ResponseElementID     => 'ResponseID',
                    Type                  => $Param{Type},
                };
to an
else block (surrounded by curly braces { } ) after
https://github.com/OTRS/otrs/blob/be65d ... m.pm#L3194

So it would say, "If Recipient count is >1, show the Reply All, else show Reply."

This is untested and will need to be updated for each version.

I'd recommend considering updating your version of OTRS to 5.0.latest for security and bugfixes.
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
vasanthsherly
Znuny newbie
Posts: 6
Joined: 06 Feb 2019, 09:33
Znuny Version: 5.0.16
Company: Futurenet Technologies India Pvt

Re: Hide/Disable "Reply" Option

Post by vasanthsherly »

When I uncheck the option. Totally "Reply" & "Reply All" are removing.

It's there any option to block only "Reply" only, Not "Reply All"
crythias
Moderator
Posts: 10169
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Hide/Disable "Reply" Option

Post by crythias »

I updated my answer.
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
wurzel
Znuny guru
Posts: 3232
Joined: 08 Jul 2010, 22:25
Znuny Version: x.x.x
Real Name: Florian

Re: Hide/Disable "Reply" Option

Post by wurzel »

Hi,

besides your idea of removing these functions... why should you remove core function of e-mail (reply, reply all, ...)?
It totally makes no sense as this is E-Mail functionality. Any E-Mail client has this options.

Florian
OTRS 8 SILVER (Prod)
OTRS 8 auf Debian 11 (Test)
Znuny 7.x latest version testing auf Debian 11

-- Ich beantworte keine Forums-Fragen PN - No PN please

I won't answer to unfriendly users any more. A greeting and regards are just polite.
crythias
Moderator
Posts: 10169
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Hide/Disable "Reply" Option

Post by crythias »

Hi wurzel,

That's what I thought, then I read it again and realized the request is to remove "Reply" and keep "Reply All".
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
Post Reply