Hi, I have installed ISPConfig on centos7 and when I create a new domain and a new email account I have to enter the whole domain. For instance: [email protected] but just want to enter foo So I have tried to add inside /etc/roundcubemail/config.inc.php $config['default_host'] = '%s'; but it doesn't work. I have also tried with %t but doesn't work.
The email login is the whle email address. If you want to use a different login, then you have to enable ciustom logins in ispcofig and enter a custom and unique userame for every mail account which you can use then in roundcube.
Not sure to understand your answer. On my old server I could only enter the username without the whole domain name and roundcube was automatically added the domain name. So in this case it I have a user foo on mydomain1.com and mydomain2.com, since the domain is added it will be unique. No really I don"t understand... UPDATE: http://trac.roundcube.net/wiki/Howto_Config/Multidomains MY first error was to use default_host, it should be username_domain, for now I have tried $config['username_domain'] = '%t'; but doesn't work.
Ok so to allow people to enter only their login you have to declare the following config inside roundcube configuration file: $config['default_host'] = '%t'; $config['username_domain'] = '%t';