• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Changing welcome (Horde) Webmail message

Kanagaraj

Basic Pleskian
Hi all,

When i create a site the webmail site is created by default, but the problem isin Webmail it is displaying "Welcome to Horde" on the home page of http://webmail.sitename.com, where can i change this?. it was done on plesk 7.5.1.
and also how can we remove the horde logo

thanks in advance,
Kanagaraj
 
which exactly OS and Plesk-version do you use now?
There are big differences between 7.5.1, 7.5.2 and 7.5.3 because
SW-Soft changed the complete horde-system
 
Originally posted by Kanagaraj
We use Plesk 7.5.3 and RH9 2days back we updated from 7.5.1 to 7.5.3. Thanks

ok

Plesk 7.5.1
/home/httpd/vhosts/webmail/horde/

Plesk 7.5.2
/home/httpd/vhosts/webmail/horde/

Plesk 7.5.3
/usr/share/psa-horde/

Alike you see, the https://autoinstall.plesk.com/ changed your
completed Horde-System and the old datas were not copied
or forwarded to the new Horde-System running onto Plesk.

This radical mailsystem-change was a reason for me _not_
to update from 7.5.2 to 7.5.3.

P.S.:
cp. https://forum.plesk.com/showthread.php?s=&threadid=23850
cp. https://forum.plesk.com/showthread.php?s=&threadid=24025&perpage=15&pagenumber=4
 
Hi,


Here's how you can can change the "welcome to Horde":

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

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

Change 'name' to:

'name' => _("Whatever"),

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

Kind regards,
Bart
 
To expand on what Bart said, change the entire line:

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

with:

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

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

I solved it on my own way, 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);

But it is the same result :D

Regards,
Bart
 
Back
Top