Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin override setting in config file dont_override #14

Closed
andypl78 opened this issue Jul 5, 2016 · 4 comments
Closed

Plugin override setting in config file dont_override #14

andypl78 opened this issue Jul 5, 2016 · 4 comments

Comments

@andypl78
Copy link

andypl78 commented Jul 5, 2016

Roundcube latest 1.2 and set in config file $config['dont_override'] = array('skin');
Plugin override this setting and show in configuration all available skins

b16c5e3c-3fe3-11e6-8640-94793d4ea322

@Takika
Copy link
Contributor

Takika commented Jul 5, 2016

The sample config.inc.php.dist isn't too good. If you want to disable some authres_status config option, you have to add them to the dont_override array in the main config.inc.php file, not the plugins' config.

@andypl78
Copy link
Author

andypl78 commented Jul 5, 2016

Ok,
File config.inc.php roundcube
$config['dont_override'] = array('skin');

File config.inc.php plugin authress

$config['enable_authres_status_column'] = true;
$config['use_fallback_verifier'] = false;
$config['show_statuses'] = authres_status::STATUS_ALL;
$config['dont_override'] = array('use_fallback_verifier');

This not working but I add to config.inc.php in plugin and now working
$config['dont_override'] = array('use_fallback_verifier', 'skin');

@johnwayne4d
Copy link

use the $config['don't_override'] in the main rc config, comment out the setting in the plugin's config.

@pimlie
Copy link
Owner

pimlie commented Nov 3, 2016

dont_override should always be set in the main config, also see this pull request: roundcube/roundcubemail#5303

@pimlie pimlie closed this as completed Nov 3, 2016
@pimlie pimlie mentioned this issue Jun 20, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants