Horde Groupware Webmail Edition is free, a web-based email app that can be configured to manage your emails, contacts, and shared calendar hosted in your environment.
Horde supports the LAMP / LEMP stack and can be a great way to bring all your external emails like Google, Yahoo, and other SMTP inboxes onto your server.
Horde also comes with decent performance, simple installation and upgrade with support for IMAP and SMTP protocols (SSL, STARTTLS), sieve scripts support, integration for popular services, and many more via plugins.
For more about Horde, please check out its homepage. Some highlights of Horde:
- IMAP and POP3 webmail client
- 3-pane and 3-column-layouts
- Message filtering
- Message searching
- HTML message composition with WYSIWIG editor
- Spell checking
- Built in attachment viewers
- Encrypting and signing of messages (S/MIME and PGP)
- Quota support
- Keyboard navigation
- Full character set support for folders names and email messages
- Conversation view of all messages in a thread
- Downloading of message attachments in a ZIP file
- Flexible, individual alias addresses
- IMAP folder subscriptions
- Shared IMAP folder
When you’re ready to get Horde install on Ubuntu, follow the steps below:
Install Apache2 HTTP Server
Apache2 HTTP Server is the most popular web server in use. Install it, since Horde needs it. To install Apache2 HTTP on the Ubuntu server, run the commands below.
sudo apt update sudo apt install apache2
After installing Apache2, the commands below can be used to stop, start and enable the Apache2 service to always start up with the server boots.
sudo systemctl stop apache2.service sudo systemctl start apache2.service sudo systemctl enable apache2.service
To test whether Apache2 is installed, open your browser and browse to the server hostname or IP address. When you see that, then Apache2 is working as expected.
http://localhost

Install MariaDB Database Server
MariaDB database server is a great place to start when looking at open-source database servers with Horde. To install MariaDB run the commands below.
sudo apt-get install mariadb-server mariadb-client
After installing MariaDB, the commands below can be used to stop, start and enable the MariaDB service to always start up when the server boots.
Run these on Ubuntu 16.04 LTS
sudo systemctl stop mysql.service sudo systemctl start mysql.service sudo systemctl enable mysql.service
Run these on Ubuntu 17.10 and 18.04 LTS
sudo systemctl stop mariadb.service sudo systemctl start mariadb.service sudo systemctl enable mariadb.service
After that, run the commands below to secure the MariaDB server by creating a root password and disallowing remote root access.
sudo mysql_secure_installation
When prompted, answer the questions below by following the guide.
- Enter current password for root (enter for none): Just press the Enter
- Set root password? [Y/n]: Y
- New password: Enter password
- Re-enter new password: Repeat password
- Remove anonymous users? [Y/n]: Y
- Disallow root login remotely? [Y/n]: Y
- Remove test database and access to it? [Y/n]: Y
- Reload privilege tables now? [Y/n]: Y
Restart MariaDB server
To test if MariaDB is installed, type the commands below to logon into the MariaDB server
sudo mysql -u root -p
Then type the password you created above to sign on. if successful, you should see MariaDB welcome message

Install PHP 7.2 and Related Modules
PHP 7.2 may not be available in Ubuntu default repositories. to install it, you will have to get it from third-party repositories.
Run the commands below to add the below third party repository to upgrade to PHP 7.2
sudo apt-get install software-properties-common sudo add-apt-repository ppa:ondrej/php
Then update and upgrade to PHP 7.2
sudo apt update
Next, run the commands below to install PHP 7.2 and related modules.
sudo apt install php7.2 php-pear libapache2-mod-php7.2 php7.2-common php7.2-curl php7.2-mbstring php7.2-xmlrpc php7.2-mysql php7.2-gd php7.2-xml php7.2-intl php7.2-ldap php7.2-imagick php7.2-tidy php7.2-json php7.2-cli
After installing PHP 7.2, run the commands below to open the PHP default config file for Apache2.
sudo nano /etc/php/7.2/apache2/php.ini
Then make the changes on the following lines below in the file and save. The value below is a great setting to apply in your environment.
file_uploads = On allow_url_fopen = On short_open_tag = On memory_limit = 256M upload_max_filesize = 100M max_execution_time = 360 date.timezone = America/Chicago
After making the change above, save the file and close it.
After installing PHP and related modules, you must restart Apache2 to reload PHP configurations.
To restart Apache2, run the commands below
sudo systemctl restart apache2.service
To test PHP 7.2 settings with Apache2, create a phpinfo.php file in the Apache2 root directory by running the commands below
sudo nano /var/www/html/phpinfo.php
Then type the content below and save the file.
<?php phpinfo( ); ?>
Save the file. then browse to your server hostname followed by /phpinfo.php
http://localhost/phpinfo.php
You should see the PHP default test page.

Create Horde Database
Now that you’ve installed all the packages required for Horde to function, continue below to start configuring the servers. First, run the commands below to create a blank Horde database.
To log on to the MariaDB database server, run the commands below.
sudo mysql -u root -p
Then create a database called Horde
CREATE DATABASE horde;
Create a database user called hordeuser with a new password
CREATE USER 'hordeuser'@'localhost' IDENTIFIED BY 'new_password_here';
Then grant the user full access to the database.
GRANT ALL ON horde.* TO 'hordeuser'@'localhost' WITH GRANT OPTION;
Finally, save your changes and exit.
FLUSH PRIVILEGES; EXIT;
Download and Configure Horde
After installing the packages above, run the commands below to register the Horde pear channel.
sudo pear channel-discover pear.horde.org
Next, set the Horde directory by running the commands below:
sudo pear install horde/horde_role sudo pear run-scripts horde/horde_role
When prompted, enter /var/www/horde as its filesystem directory:
Filesystem location for the base Horde application : /var/www/horde
Configuration successfully saved to PEAR config.
Install scripts complete
After that, run the commands below to install the Horde Groupware Webmail edition.
sudo pear install -a -B horde/webmail
After a while, Horde should download all required packages into its home directory. When done, run the commands below to begin its installation.
sudo webmail-install
Configure your settings as below:
Installing Horde Groupware Webmail Edition Configuring database settings What database backend should we use? (false) [None] (mysql) MySQL / PDO (mysqli) MySQL (mysqli) (oci8) Oracle (pgsql) PostgreSQL (sqlite) SQLite Type your choice []: mysql Username to connect to the database as* [] hordeuser Password to connect with How should we connect to the database? (unix) UNIX Sockets (tcp) TCP/IP Type your choice [unix]: unix Location of UNIX socket [] Database name to use* [] horde Internally used charset* [utf-8] Use SSL to connect to the server? (false) No (true) Yes Type your choice []: false Split reads to a different server? (false) Disabled (true) Enabled Type your choice [false]: Should Horde log all queries. If selected, queries will be logged at the DEBUG level to your configured logger. (1) Yes (0) No Type your choice [0]: Writing main configuration file. done. Creating and updating database tables. done. Configuring administrator settings Specify an existing mail user who you want to give administrator permissions (optional): Writing main configuration file. done. Thank you for using Horde Groupware Webmail Edition!
Horde should be installed. now continue below to configure.
First, create the Horde temp directory and Apache2 configurations file.
sudo mkdir /var/www/horde/tmp sudo nano /etc/apache2/conf-available/horde.conf
Then copy and paste the content below into the file and save it.
Alias /Microsoft-Server-ActiveSync /var/www/horde/rpc.php
Alias /horde /var/www/horde
ServerName webmail.example.com
DocumentRoot /var/www/horde
<Directory /var/www/horde>
DirectoryIndex index.php
Options +FollowSymLinks
AllowOverride All
Require all granted
AddType application/x-httpd-php .php
php_value include_path ".:/usr/share/php"
php_value open_basedir "none"
php_value upload_tmp_dir "/var/www/horde/tmp/"
</Directory>
Setup Horde password tool to allow users to change/reset passwords
sudo pear install -a -B horde/passwd sudo chown -R www-data:www-data /var/www/horde/passwd
Next, enable and restart Apache2.
sudo a2enconf horde sudo systemctl reload apache2
Log in and begin configuring Horde
http://webmail.example.com/horde

Enjoy!

Congratulations! You have successfully installed and configured Horde on Ubuntu 16.04 | 18.04 with Apache2 and PHP 7.2.
You may also like the post below:
hello i need some help , when i get to this step http://webmail.example.com/horde, i cant login what username should i be using ? also in order to acces i need to do it by localhost/horde
your help is greatly appreciated
Thank you for your knowledge, I want to ask a question, How do we get accounts in the horde?
hello i need some help , when i get to this step http://webmail.example.com/horde, i cant login what username should i be using ? also in order to acces i need to do it by localhost/horde
your help is greatly appreciated
Hello!
Did You get any solution?
Where i can get login/password?
You might need to install Postfix (SMTP server) & Dovecot (IMAP server) on the same server that your Horde Groupware is installed on.
I had the same issue, and once I’d installed both of those I was able to log into Horde with the username and password that I log into the server with. Just Google something like “setup horde with postfix and dovecot” and you should be able to find a few resources to help.
Hello, the installation was smooth in all process without error.
But with the address:
http://webmail.hostnameofmymachine.com/horde or http://192.168.1.101/horde
it doesn’t work. I am able to reach the PHP and MYSQL webpages.
The error is:
Not Found
The requested URL was not found on this server.
Apache/2.4.29 (Ubuntu) Server at 192.168.1.101 Port 80
Thanks.
When I did the pear install -a -B horde/webmail
I get the following warnings:
pear install -a -B horde/webmail
WARNING: “pear/Console_Getopt” is deprecated in favor of “pear/Console_GetoptPlus”
Unknown remote channel: phpseclib.sourceforge.net
WARNING: “pear/Net_Sieve” is deprecated in favor of “horde/Horde_ManageSieve”
Failed to download pear/Date_Holidays within preferred state “stable”, latest release is version 0.21.8, stability “alpha”, use “channel://pear.php.net/Date_Holidays-0.21.8” to install
Failed to download horde/Horde_Backup within preferred state “stable”, latest release is version 1.0.0RC1, stability “beta”, use “channel://pear.horde.org/Horde_Backup-1.0.0RC1” to install
Warning: “continue” targeting switch is equivalent to “break”. Did you mean to use “continue 2”? in PEAR/PackageFile/v1.php on line 1424
PHP Warning: “continue” targeting switch is equivalent to “break”. Did you mean to use “continue 2”? in /usr/share/php/PEAR/PackageFile/v1.php on line 1424
Failed to download pecl/sasl within preferred state “stable”, latest release is version 0.1.0, stability “alpha”, use “channel://pecl.php.net/sasl-0.1.0” to install
WARNING: “pecl/APC” is deprecated in favor of “channel:///APCu”
Failed to download pecl/idn within preferred state “stable”, latest release is version 0.2.0, stability “beta”, use “channel://pecl.php.net/idn-0.2.0” to install
WARNING: “pear/HTTP_Request” is deprecated in favor of “pear/HTTP_Request2”
WARNING: “pear/DB” is deprecated in favor of “pear/MDB2”
Failed to download pear/SOAP within preferred state “stable”, latest release is version 0.14.0, stability “beta”, use “channel://pear.php.net/SOAP-0.14.0” to install
Failed to download pear/XML_Serializer within preferred state “stable”, latest release is version 0.21.0, stability “beta”, use “channel://pear.php.net/XML_Serializer-0.21.0” to install
Failed to download pear/Console_Color2 within preferred state “stable”, latest release is version 0.1.2, stability “alpha”, use “channel://pear.php.net/Console_Color2-0.1.2” to install
WARNING: “pear/Auth_SASL” is deprecated in favor of “pear/Auth_SASL2”
WARNING: “pear/HTTP_Request” is deprecated in favor of “pear/HTTP_Request2”
Unknown remote channel: pear.nrk.io
WARNING: “pecl/mongo” is deprecated in favor of “channel:///mongodb”
Failed to download pear/Numbers_Words within preferred state “stable”, latest release is version 0.18.2, stability “beta”, use “channel://pear.php.net/Numbers_Words-0.18.2” to install
Failed to download pear/Image_Text within preferred state “stable”, latest release is version 0.7.0, stability “beta”, use “channel://pear.php.net/Image_Text-0.7.0” to install
WARNING: “pear/Auth_SASL” is deprecated in favor of “pear/Auth_SASL2”
WARNING: “pear/Net_URL” is deprecated in favor of “pear/Net_URL2”
WARNING: “pear/HTTP_Request” is deprecated in favor of “pear/HTTP_Request2”
WARNING: “pear/Auth_SASL” is deprecated in favor of “pear/Auth_SASL2”
horde/imp can optionally use package “channel://phpseclib.sourceforge.net/File_ASN1”
I am trying to decide on roundcube or horde. While I had some issues with roundcube, it was due to problems with my mail server setup Once I fixed those, roundcube worked great without any issues.
I got the warning I showed, but continued on.
But didn’t get it to work. It just showed the standard welcome page.
Several other questions.
1. Why use conf-available and not sites-available. I want to host other web sites on the server that has the horde on it?
2. I tried with sites-available, and still didn’t work.
3. Where do I put the mail server name, and ports to use for getting and sending mail? That is how it will identify and validate my userid and password.
For reasons, I can’t run my mail server and the web access on the same server, they have to live on 2 different servers!
May this tutorial work for horde installation on Ubuntu 20.04 as well ?
Uninstall horde by below command
pear uninstall `pear list -c horde | tail -n +4 | awk ‘{ print “horde/”$1 }’`