Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: pkrc on March 04, 2019, 08:04:54 AM

Title: How to enable 'Use IMAP Subscriptions' by default
Post by: pkrc on March 04, 2019, 08:04:54 AM
Hello,

I would like to check (enable) 'Use IMAP Subscriptions' setting (in Preferences - Server Settings)
for all new users of RoundCube (RC) by default.

At present, this option is unchecked (disabled) for new users after their first login to our RC,
but they can enable it manually.

What configuration parameter should I put into 'config.inc.php' (or other file)
to get expected result?

We are using RC ver. 1.3.8.

Regards,
pkrc

 

Title: Re: How to enable 'Use IMAP Subscriptions' by default
Post by: SKaero on March 04, 2019, 08:53:37 AM
According to the info in the plugin:
Code: [Select]
* The user option can be hidden and set globally by adding 'use_subscriptions'
 * to the 'dont_override' configure line:
 * $config['dont_override'] = array('use_subscriptions');
 * and then set the global preference
 * $config['use_subscriptions'] = true; // or false
Title: Re: How to enable 'Use IMAP Subscriptions' by default
Post by: pkrc on March 04, 2019, 09:45:42 AM
It works.
Thank you.

Regards,
pkrc