Author Topic: Setting up default settings Roundcube serverwide  (Read 6809 times)

Offline itmonitor

  • Jr. Member
  • **
  • Posts: 18
Setting up default settings Roundcube serverwide
« on: June 06, 2017, 08:31:32 AM »
Hi!

I am new to RoundCube.  I need to apply settings serverwide: forcing all emails into html, writing new email above received email, font used by all users and other email configuration like those. Could not find where I can configure RoundCube settings so they will apply serverwide.

Any advice is welcome.

rgs

IM

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Setting up default settings Roundcube serverwide
« Reply #1 on: June 06, 2017, 10:09:25 AM »
You can set the defaults in the config.inc.php, look in the defaults.inc.php for the settings and copy them over config.inc.php to set them.

Offline rm13

  • Full Member
  • ***
  • Posts: 129
Re: Setting up default settings Roundcube serverwide
« Reply #2 on: June 06, 2017, 07:07:43 PM »
You may also want to check the bin directory for moduserprefs.sh if you already have users that you are trying to change preferences on.

Forcing all to html email is a bit harsh though, I prefer plain text email.  :D

Offline itmonitor

  • Jr. Member
  • **
  • Posts: 18
Re: Setting up default settings Roundcube serverwide
« Reply #3 on: June 07, 2017, 07:22:17 AM »
Many thanks!

Offline itmonitor

  • Jr. Member
  • **
  • Posts: 18
Re: Setting up default settings Roundcube serverwide
« Reply #4 on: June 07, 2017, 08:28:44 AM »
You can set the defaults in the config.inc.php, look in the defaults.inc.php for the settings and copy them over config.inc.php to set them.

Thank you. I set the defaults in the config.inc.php . Sorry if this seems obvious, but what is the use of the defaults.inc.php since config.inc.php was modified?

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Setting up default settings Roundcube serverwide
« Reply #5 on: June 07, 2017, 09:30:08 AM »
The defaults.inc.php holds all config options but is overwritten when Roundcube is updated so any settings you want to change should be copied to the config.inc.php since it isn't overwritten when Roundcube is upgraded.

Offline itmonitor

  • Jr. Member
  • **
  • Posts: 18
Re: Setting up default settings Roundcube serverwide
« Reply #6 on: June 08, 2017, 05:16:42 PM »
Thanks.