Installed the script on my 6.01-01, where I host a few sites and found that when logging in through a virtual domain, the user would be shown at the bottom of the page as if logged into my primary domain:
You are currently logged in as user@domain.xx
Have made a small hack that changes this so that the user is shown as:
You are currently logged in as user@virtualdomain.xx
------------------
(changes is in red)
pico /home/httpd/html/horde/templates/sme-common-header.inc
<?php
$vdomain = getenv('HTTP_HOST');
$vdomain = preg_replace('|^www.|i', '', $vdomain);
$vdomain = strtolower($vdomain);
/* Added by John H. Bennett III bennettj at thebennetthome.com */
echo "<font color=blue>";
echo "<p>";
echo "<b><center>You are currently logged in as ";
echo $imp['user']."@";
echo $vdomain;
echo "</center></b>";
echo "</font>";
?>
CTRL-X and save file
Hope it's usefull
Frederik