Author Topic: Managing identities  (Read 3378 times)

Offline xTz

  • Newbie
  • *
  • Posts: 2
Managing identities
« on: January 02, 2010, 12:20:38 PM »
Hi folks!

What I want to do is to restrict the identities' E-Mail field not to be editable by the user himself - e.g. nevermind what identity he wants, the field would automatically be set to the account, he used to log in to roundcube. Is that possible?

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Managing identities
« Reply #1 on: January 02, 2010, 12:49:25 PM »
In the /config/main.inc.php edit $rcmail_config['identities_level'] for what you want to to set it to 3.
Code: [Select]

$rcmail_config['identities_level'] = 3;

Offline xTz

  • Newbie
  • *
  • Posts: 2
Managing identities
« Reply #2 on: January 02, 2010, 01:10:34 PM »
// 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;

Actually, 1 uses more like the appropriate option, but many many thanks. RoundCube is awesome! Keep up the good work.