Roundcube Community Forum

 

Default host problem

Started by lucasnet, August 23, 2012, 03:39:09 AM

Previous topic - Next topic

lucasnet

Hi,

I would like to ask about Default Host option. In previous version of roundcube function worked well. I have couple of domains but on one server (the same IP).
So it doesnt matter if I login to domain1.com or domain2.com. Login with @domain.com and password enough.

After update to 0.8, when set $rcmail_config['default_host'] = myserver.com; i cant login to any mail. I have to leave NULL and manually type default host every login.
Its confusing :)

What should I set ?

SadKnight

Maybe set:
$rcmail_config['default_host'] = 'myserver.com';

Yoni

How about $rcmail_config['default_host'] = 'localhost';

If the backend server is the same for all those hosted domains then you can login with [email protected] without problems.

lucasnet

Thanks! localhost helped :)

I dont know why when i set primary domain worked only with primary domain. On others i had 'login failed'.
Like i wrote, with previous version i didnt have a problem.

brianhillphotography

Hey guys,

I'm having this same problem, but setting $rcmail_config['default_host'] = 'localhost'; did not help.

I have RoundCube 0.8.1 installed on Apache2 with ISPConfig. I've set it up to be a global alias for "/webmail". I have 3 domains resolving to the same server, pwndhost.com, brianhillphotography.ca, itechnews.ca.

My server is "admin.pwndhost.com". I have an email account setup on "[email protected]". Whenever I try to login to RoundCube with "[email protected]" it just says "Login Failed" below.

Here's what the Mail.log file says:

Sep 18 22:24:42 admin dovecot: imap-login: Login: user=<[email protected]>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, mpid=2943, secured
Sep 18 22:24:42 admin dovecot: imap([email protected]): Disconnected: Logged out bytes=29/405



SKaero

Enable imap_debug in RoundCube and post the log.

brianhillphotography

Quote from: SKaero on September 19, 2012, 04:20:13 AM
Enable imap_debug in RoundCube and post the log.
Thanks, I'll give this a shot once I'm at work and let you know how it went.

brianhillphotography

So I enabled that option in main.inc.php and this was the result on the top of the page after I press the login button.

PHP Error in /var/www/clients/client1/web1/web/webmail/program/include/rcmail.php (970): Access denied for new user [email protected]. 'auto_create_user' is disabled

I'm not sure why it's doing this when this mail account is not a new account. I can access it via my phone's mail client, send and receive from it. So why am I getting an auto_create_user error when the user already exists?

Thanks!

brianhillphotography

Nevermind...

Problem solved.

I had "$rcmail_config['auto_create_user'] = false;" set in the main.inc.php file. I changed it to "true" just to see what would happen and it let me log in.

When I was initially going through the config I assumed that line meant that Roundcube would create an entire new mailbox for anyone that tried to log in with an account that didn't exist. Instead I guess what it does is just create a local Roundcube record for the mail client.

Thanks for the help!