Greetings community, I have a query about the roundcube; I have a user created in my server and I have added several false identities, then when I create a message I accept to send with any of the identities, how to avoid sending without requesting identification ?, the problem is that a user from his account can send As if it were someone else and that can bring me problems.
Hi @playmepe,
You can restrict users by editing /etc/roundcubemail/config.inc.php file
// Set identities access level:
// 0 - many identities with the possibility to edit all params
// 1 - many identities with the possibility to edit all params but not email address
// 2 - one identity with the possibility to edit all params
// 3 - one identity with the possibility to edit all params but not email address
// 4 - one identity with the ability to edit only signature
$ Config [āidentities_levelā] = 0;
cd /etc/e-smith/templates-custom
mkdir etc
mkdir etc/roundcubemail
mkdir etc/roundcubemail/config.inc.php
cd etc/roundcubemail/config.inc.php
cp /etc/e-smith/templates/etc/roundcubemail/config.inc.php/40SYSTEM .
vi 40SYSTEM
Thanks for the answers, this is solved with this, but I handle alias so before creating an account I need to change $ Config [āidentities_levelā] = 0; And then switch back to $ Config [āidentities_levelā] = 4; Is there any option in rouncube or nethserver that does this automatically?