A blank page usually means display_errors is off in php.ini or .htaccess. Check your error log.
In the config dir you should have 2 files..
db.inc.php
main.inc.php
This is how I installed it..
1. Create database using phpMyAdmin or command line
2. Executed mysql.initial.sql located in the SQL directory
3. Removed the last file extension from the 2 files in the config directory, leaving me with..
db.inc.php & main.inc.php
4. Modify line 21 as follows in db.inc.php, then save it.
Code: Select all
$rcmail_config['db_dsnw'] = 'mysql://username:password@localhost/databaseName';
5. Pull it up in a browser http://192.168.1.***/dir/mail/
6. Type in mail username, password, smtp.serverAddress.com
Everything in main.inc.php is optional except to send mail I believe.