• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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