• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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