Adis Salcin wrote:
$rcmail_config['smtp_user'] = '%u' . '@domain.com';
I did that above and changed the domain.com with my domain but without success.
$rcmail_config['smtp_user'] is not involved while login(correct me if I'm wrong) , it's only needed while sending email/connecting to your smtp server (in deep short).
You can try my way, by changing the main index.php, all it does:
same site for different vhosts).
Wojtek
--- index.php Thu Nov 10 09:24:29 2005 +++ index.php~ Thu Nov 10 09:24:29 2005 @@ -116,18 +116,13 @@ if ($_action=='login' && $_task=='mail') { $host = $_POST['_host'] ? $_POST['_host'] : $CONFIG['default_host'];
$_SERVER['HTTP_HOST']);
// check if client supports cookies if (empty($_COOKIE)) { show_message("cookiesdisabled", 'warning'); }
rcmail_login($userdn, $_POST['_pass'], $host))
rcmail_login($_POST['_user'], $_POST['_pass'], $host)) { // send redirect header("Location: $COMM_PATH");