Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: vishnuduttp on July 04, 2017, 04:20:10 AM

Title: How to disable the SEND option from the skin using? (Using LARRY)
Post by: vishnuduttp on July 04, 2017, 04:20:10 AM
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!
Title: Re: How to disable the SEND option from the skin using? (Using LARRY)
Post by: vishnuduttp 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');
Title: Re: How to disable the SEND option from the skin using? (Using LARRY)
Post by: SKaero on July 05, 2017, 12:43:07 AM
Out of curiosity why do you want to disable sending?
Title: Re: How to disable the SEND option from the skin using? (Using LARRY)
Post by: vishnuduttp 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!
 ;) ;) ;) ;) ;)