RoundCube Webmail
Posted by: spiderfool
Posted on: 2005-11-27 18:23:00
I have installed RoundCube Webmail but it keeps telling me login failed. I googled it found some help but i cant seem to get it to make me login. Heres what i have done so far. I am logging in with my mailbox number not user@domain
Edited roundmails index.php
Replace line 54:
ini_set('include_path',
$INSTALL_PATH.PATH_SEPARATOR.$CURRENT_PATH.'program'.PATH_SEPARATOR.$CURRENT_
PATH.'program/lib'.PATH_SEPARATOR.ini_get('include_path'));
with
ini_set('include_path',
ini_get('include_path').PATH_SEPARATOR.$INSTALL_PATH.PATH_SEPARATOR.'program'
.PATH_SEPARATOR.'program/lib');
Edit config/db.inc.php to my datbase settings
Now my questions is how do i set my mail server address mail.domain.com
main.inc.php
// automatically create a new RoundCube user when log-in the first time.
// a new user will be created once the IMAP login succeeded.
// set to false if only registered users can use this service
$rcmail_config['auto_create_user'] = FALSE;
// the mail host chosen to perform the log-in
// leave blank to show a textbox at login, give a list of hosts
// to display a pulldown menu or set one host as string.
// To use SSL connection, enter ssl://hostname:993
$rcmail_config['default_host'] = 'mail.unixdaemon.org';
Tried localhost, left it blank too still no avail. If anyone has this working also is there a way to add a backend to make it accept user@domain instead of mailbox numbers?
Thank you