• 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.

Horde webmail installation

TarasS

Basic Pleskian
I have Plesk 9.2 running at Red Hat Enterprise Linux Server release 5.3 (Tikanga).
I have installed horde-psa in shell using yum:
[root@interactive ~]# yum info psa-horde
Loaded plugins: rhnplugin, security
Available Packages
Name : psa-horde
Arch : noarch
Version : 3.1.7
Release : cos5.build86080722.00
Size : 4.2 M
Repo : plesk
Summary : The Horde framework adopted for Plesk
URL : http://www.horde.org/
License : GPL
Description: The Horde Framework provides a common structure and interface for Horde applications (such as IMP, a web-based mail program). This package is required for all other Horde modules. The Horde
: Project writes web applications in PHP and releases them under the GNU Public License. For more information (including help with Horde and its modules) please visit http://www.horde.org/.

[root@interactive ~]# yum install psa-horde
Loaded plugins: rhnplugin, security
Setting up Install Process
Parsing package install arguments
Resolving Dependencies
--> Running transaction check
---> Package psa-horde.noarch 0:3.1.7-cos5.build86080722.00 set to be updated
--> Processing Dependency: psa-pear >= 1.4.9 for package: psa-horde
--> Running transaction check
---> Package psa-pear.noarch 0:1.4.9-20060517.1 set to be updated
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================================================================================================================================================
Package Arch Version Repository Size
================================================================================================================================================================================================================
Installing:
psa-horde noarch 3.1.7-cos5.build86080722.00 plesk 4.2 M
Installing for dependencies:
psa-pear noarch 1.4.9-20060517.1 plesk 861 k

Transaction Summary
================================================================================================================================================================================================================
Install 2 Package(s)
Update 0 Package(s)
Remove 0 Package(s)

Total download size: 5.1 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): psa-pear-1.4.9-20060517.1.noarch.rpm | 861 kB 00:00
(2/2): psa-horde-3.1.7-cos5.build86080722.00.noarch.rpm | 4.2 MB 00:00
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 3.8 MB/s | 5.1 MB 00:01
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : psa-pear [1/2]
Installing : psa-horde [2/2]
Trying to start MySQL server... Trying to establish test connection... connected
done
Trying to generate random password for Horde Web Based mail client... done
Trying to save password for Horde Web Based mail client into /etc/psa/.webmail.shadow... done
Trying to install horde database... done

Installed: psa-horde.noarch 0:3.1.7-cos5.build86080722.00
Dependency Installed: psa-pear.noarch 0:1.4.9-20060517.1
Complete!

I can`t switch on webmail inside Plesk panel. When I`m going to Settings - Select WebMail
Webmail section shows
Available Webmail clients None

But Home - Server components shows installed:
psa-horde 3.1.7-cos5.build86080722.00

Maybe I need to install some more components to enable Horde webmail? ...ro to do some additional setup?
 
Same Issue

We're having the same issue. Somehow I missed your post when I did a search before posting a similar question here. I've done quite a bit of digging and can't seem to find any answers :(

------------------
www.nurelm.com/themanual
 
I have found solution for this problem.
I have added virtual host webmail.*
You can try this solution too. Try to create configuration file zz050a_horde_php_workaround.conf in /etc/httpd/conf.d/ (this directory has configuration files wich includes by Apache).
<VirtualHost \
111.222.333.1:80 \
111.222.333.2:80 \
111.222.333.3:80 \
111.222.333.4:80 \
# add here more of your IP adresses
>
DocumentRoot /usr/share/psa-horde/
Alias /horde/ /usr/share/psa-horde/
Alias /imp/ /usr/share/psa-horde/imp/
ServerName webmail
ServerAlias webmail.*
UseCanonicalName Off
<Directory /usr/share/psa-horde>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off
php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/usr/local/psa/var/log:/usr/local/psa/horde"
php_admin_value include_path "/usr/share/psa-horde/lib:/usr/share/psa-horde:/usr/share/psa-horde/pear:."
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off
php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/usr/local/psa/var/log:/usr/local/psa/horde"
php_admin_value include_path "/usr/share/psa-horde/lib:/usr/share/psa-horde:/usr/share/psa-horde/pear:."
</IfModule>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>


<IfModule mod_ssl.c>

<VirtualHost \
111.222.333.1:443 \
111.222.333.2:443 \
111.222.333.3:443 \
111.222.333.4:443 \
# add here more of your IP adresses
>
DocumentRoot /usr/share/psa-horde/
Alias /horde/ /usr/share/psa-horde/
Alias /imp/ /usr/share/psa-horde/imp/
ServerName webmail
ServerAlias webmail.*
UseCanonicalName Off
SSLEngine on
SSLVerifyClient none
SSLCertificateFile /etc/httpd/conf/httpd.pem
<Directory /usr/share/psa-horde>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off
php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/usr/local/psa/var/log:/usr/local/psa/horde"
php_admin_value include_path "/usr/share/psa-horde/lib:/usr/share/psa-horde:/usr/share/psa-horde/pear:."
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag magic_quotes_gpc off
php_admin_flag safe_mode off
php_admin_value open_basedir "/usr/share/psa-horde:/etc/psa-horde:/etc/psa:/tmp:/usr/local/psa/var/log:/usr/local/psa/horde"
php_admin_value include_path "/usr/share/psa-horde/lib:/usr/share/psa-horde:/usr/share/psa-horde/pear:."
</IfModule>
SSLRequireSSL
Order allow,deny
Allow from all
</Directory>
</VirtualHost>


</IfModule>
 
Back
Top