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?
In the /config/main.inc.php edit $rcmail_config['identities_level'] for what you want to to set it to 3.
$rcmail_config['identities_level'] = 3;
// 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.