• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • 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.

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 http://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. http://forum.plesk.com/showthread.php?s=&threadid=23850
cp. http://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