How can I get rid of the server option at the login screen. I would like to be able to just type in my username and password and log straight into my mailbox.
Thank you.
You mean the drop-down box that lists the servers? In the config/main.inc.php file, just make this variable (or setting) your domain:
$rcmail_config['mail_domain'] = '';
So for example, here it would be:
$rcmail_config['mail_domain'] = 'roundcubeforum.net';
If you wanted multiple hosts, it would be something like:
$rcmail_config['mail_domain'] = array('imap.roundcubeforum.net'=>'Roundcubeforum.net');
Hmmm... doesn't do the trick for me. Adding my domain to the "$rcmail_config['username_domain']" variable saved me from writing my whole email address in the "username" field, but I still have to write my domain name into the "server" field...
[update]... maybe you meant the "$rcmail_config['default_host']" field... I set that to my domain and the server field went away. ;)