I have created a mysql database named xyz and a user named xyz_user so what exactly should this line be in db.inc.php?
$rcmail_config['mysql'] = 'mysql://xyz_user@localhost/xyz';
Well, you don't have a password in there, for one. Should be:
$rcmail_config['mysql'] = 'mysql://xyz_user:password@localhost/xyz';
Chris