diff options
author | alecpl <alec@alec.pl> | 2008-10-24 07:57:21 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-10-24 07:57:21 +0000 |
commit | ec01712a998b35d48be3daaf272779fdbc63cd74 (patch) | |
tree | 397846eede8b3d52e55dcc33563b0bc47b0a2913 /config | |
parent | d1a8d0f4c21136c9adc7efa02e3a37772bea222f (diff) |
- Added option 'identities_level', removed 'multiple_identities'
- Allow deleting identities when multiple_identities=false (#1485435)
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index f6156c1b9..8a6c2966a 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -285,8 +285,12 @@ $rcmail_config['address_book_type'] = 'sql'; // don't allow these settings to be overriden by the user $rcmail_config['dont_override'] = array(); -// allow users to add and delete sender identities -$rcmail_config['multiple_identities'] = true; +// 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 +$rcmail_config['identities_level'] = 0; // try to load host-specific configuration // see http://trac.roundcube.net/wiki/Howto_Config for more details |