Author Topic: How to enable 'Use IMAP Subscriptions' by default  (Read 2373 times)

Offline pkrc

  • Newbie
  • *
  • Posts: 5
How to enable 'Use IMAP Subscriptions' by default
« 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

 


Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: How to enable 'Use IMAP Subscriptions' by default
« Reply #1 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

Offline pkrc

  • Newbie
  • *
  • Posts: 5
Re: How to enable 'Use IMAP Subscriptions' by default
« Reply #2 on: March 04, 2019, 09:45:42 AM »
It works.
Thank you.

Regards,
pkrc