Roundcube Community Forum

Release Support => Release Discussion => Topic started by: EHCanadian on June 12, 2025, 01:55:01 AM

Title: Understanding the method of $config['disabled_actions']
Post by: EHCanadian on June 12, 2025, 01:55:01 AM
Looking for some help on understanding where I should be looking to obtain the correct values to disable aspects of the roundcube options/edits/settings.

For example. Should one want to disable " ?_task=settings&_action=identities " add or delete identities. What was the process used to obtain/find the value to enter in the $config['disabled_actions'] = array('something.identities');
Title: Re: Understanding the method of $config['disabled_actions']
Post by: JohnDoh on June 12, 2025, 03:43:51 AM
Identities has its own settings, have a look at:
// Set identities access level:
// 0 - many identities with possibility to edit all params
// 1 - many identities with possibility to edit all params but not email address
// 2 - one identity with possibility to edit all params
// 3 - one identity with possibility to edit all params but not email address
// 4 - one identity with possibility to edit only signature
$config['identities_level'] = 0;