• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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