Here`s how I installed my Horde Webmail. I assume that you already have CWP with Apache, PHP and MySQL.
1. Register Horde PEAR channel:
pear channel-discover pear.horde.org
2. Set Horde installation directory:
cd /usr/local/apache/htdocs
pear install horde/horde_role
pear run-scripts horde/horde_role
3. Install Horde Groupware Webmail Edition:
pear install -a -B horde/webmail
4. Run installation script:
webmail-install
5. Test Horde Groupware Webmail Edition:
cd /usr/local/apache/htdocs/horde/config/
nano -w conf.php
find
$conf['testdisable'] = true;
and change it to
$conf['testdisable'] = false;
6. Making it visible
Go to CWP -> Apache Settings -> Apache Include Conf -> domain-redirects.conf
Add this line at the end of the file:
Alias /horde /usr/local/apache/htdocs/horde
Save and restart Apache
7. Check if everything is ok
Go to
http://your_ip/horde/test.php or
http://your_domain/horde/test.php If you see everything in
green than you are ok. Change back to $conf['testdisable'] = true; and enjoy your new horde webmail.
If you see something in
red install/fix it. Check test.php again until you see everything in green.
When you`re ready with all the stuff in test.php DON`T FORGET to edit again /usr/local/apache/htdocs/horde/config/conf.php and set $conf['testdisable'] = true;Hope this helps. I`ll try to answer all the questions if you have any.