Author Topic: How to disable the SEND option from the skin using? (Using LARRY)  (Read 2660 times)

Offline vishnuduttp

  • Jr. Member
  • **
  • Posts: 20
Is there any way to disable the buttons in the compose window for eg. SEND? I have searched through the Skin files in the RC folder including the skins/larry/template/mail.html! .Using RC-1.2.5.  :-[ :-[ :-[
Thanks in advance!

Offline vishnuduttp

  • Jr. Member
  • **
  • Posts: 20
Re: How to disable the SEND option from the skin using? (Using LARRY)
« Reply #1 on: July 05, 2017, 12:22:20 AM »
Got it! There is an  Option in the configuration file! Just enter the options you neeed to disable using the format as follows.

Code: [Select]
// List of disabled UI elements/actions
$config['disabled_actions'] = array();

Just needed to include the options to disable as
Code: [Select]
$config['disabled_actions'] = array('mail.send','mail.reply-all');

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: How to disable the SEND option from the skin using? (Using LARRY)
« Reply #2 on: July 05, 2017, 12:43:07 AM »
Out of curiosity why do you want to disable sending?

Offline vishnuduttp

  • Jr. Member
  • **
  • Posts: 20
Re: How to disable the SEND option from the skin using? (Using LARRY)
« Reply #3 on: July 05, 2017, 07:08:17 AM »
Just require a Mail environment where the users are only allowed to view, the forwarded mails from there own mails in the Intranet type of network, from an external location!
 ;) ;) ;) ;) ;)