Horde
From dghartung.com/docs
Changing this line in ./horde/imp/login.php will give the server name by which horde is accessed at the top of the screen for virual domains on your server
$title = sprintf(_("Welcome to %s Webmail at $_SERVER[HTTP_HOST]"),
$registry->get('name', ($imp_auth) ? 'horde' : null));
To make the mode "Dynamic" at the login screen you need to edit the ./imp/login.php file. Search for the code that looks like this:
<?php
$views = array();
if (!empty($conf['user']['select_view'])) {
$apps = $registry->listApps(null, true);
if (isset($apps['dimp']) || isset($apps['mimp'])) {
$views[] = array('sel' => false, 'val' => 'imp', 'name' => _("Traditional"));
if (isset($apps['dimp'])) {
$views[] = array('sel' => true, 'val' => 'dimp', 'name' => _("Dynamic"));
}
if (isset($apps['mimp'])) {
$views[] = array('sel' => false, 'val' => 'mimp', 'name' => _("Minimalist"));
}
}
}
Set the value for "Dynamic" to true as in the example above
