• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Welcome to Horde!

E

epretorious

Guest
How do I modify the Horde greeting ("Welcome to Horde!")?
 
* Solution

Hi,

To change the "welcome to Horde"

Edit: /etc/psa-horde/horde/registry.php

Find: 'name' => _("Horde"),

Replace with:

'name' => _(preg_replace('/^webmail./', '', $GLOBALS['HTTP_SERVER_VARS']['SERVER_NAME']) ),

OR

by changing this line in /usr/share/psa-horde/imp/login.php:

$title = sprintf(_("Welcome to %s"), $registry->get('name', ($imp_auth) ? 'horde' : null));

with

$rest = substr($_SERVER['SERVER_NAME'], 8);
$title = sprintf(_("Welcome to %s"),$rest);


---

Both will make the greeting- "Welcome to domain.com" - with domain.com being whatever domain's webmail is being called.

---

To remove (or replace) the default horde logo, edit the common-footer at /usr/share/psa-horde/templates/

***

:) Hi5.
 
Back
Top