Roundcube Community Forum

 

How to enable 'Use IMAP Subscriptions' by default

Started by pkrc, March 04, 2019, 08:04:54 AM

Previous topic - Next topic

pkrc

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




SKaero

According to the info in the plugin:

* 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

pkrc