Roundcube user interfaceRoundcube (RC) v0.1.1 released today!! Roundcube is the first open source PHP/MySQL browser-based webmail software. It is similar to Yahoo and Google webmails with features like address book, folder manipulation, message searching and spell checking.

I have successfully installed Roundcube for OSWeb2Design. I love it!! At first I had problem of sending email, although receiving email is alright. I checked out the internet and found that some of them also have the same problem. I resolved the email sending problem by clearing the smtp_server in the main.inc.php file and forcing the RC to use PHP mail function, as shown below.

/ use this host for sending mails.
// to use SSL connection, set ssl://smtp.host.com
// if left blank, the PHP mail() function is used
$rcmail_config['smtp_server'] = ";

// SMTP port (default is 25; 465 for SSL)
$rcmail_config['smtp_port'] = 25;

// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = ";

// SMTP password (if required) if you use %p as the password RoundCube
// will use the current user's password for login
$rcmail_config['smtp_pass'] = ";

Share/Save/Bookmark