• 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

How to modify Horde Template?

J

JamesG

Guest
Hi,

is it possible to modify Horde-Template?, vor example, something like: "Welcome to Horde" to: "Welcome to my webmail"?

thx,
JamesG
 
You can do it ;)

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/
 
Back
Top