Difference between revisions of "Roundcube"

From Linuxintro
imported>ThorstenStaerk
(New page: '''Roundcube''' is a mail user agent that is running as webmail service. = Install it = Here is an example how to install it. It uses apache2 on SUSE Linux 11.2, other combination...)
 
imported>ThorstenStaerk
Line 23: Line 23:
 
  [[mv]] roundcubemail-0.3.1-dep roundcube
 
  [[mv]] roundcubemail-0.3.1-dep roundcube
 
* [[configure]] roundcube: surf to http://127.0.0.1/roundcube/installer
 
* [[configure]] roundcube: surf to http://127.0.0.1/roundcube/installer
 +
 +
= TroubleShooting =
 +
With older SUSE versions the following packages seemed necessary:
 +
* php5-pear-mail
 +
* php5-pear-mail-mime
  
 
= See also =
 
= See also =
 
* [[Web Mail|webmail software]] - other software for this
 
* [[Web Mail|webmail software]] - other software for this
 
== External links ==
 
 
* http://www.roundcube.net/
 
* http://www.roundcube.net/
  
 
[[category:Webmail]]
 
[[category:Webmail]]

Revision as of 12:25, 28 March 2010

Roundcube is a mail user agent that is running as webmail service.

Install it

Here is an example how to install it. It uses apache2 on SUSE Linux 11.2, other combinations should work same or similar. It installs roundcube on the local host 127.0.0.1.

yast -i php5-gettext php5-imap php5-mcrypt php5-pear
pear install mdb2
pear install Net_SMTP
pear install Mail_mime
pear install MDB2_Driver_mysql
/etc/init.d/apache2 restart
cd /srv/www/htdocs
wget http://downloads.sourceforge.net/project/roundcubemail/roundcubemail-dependent/0.3.1/roundcubemail-0.3.1-dep.tar.gz?use_mirror=heanet
tar xvzf roundcubemail-0.3.1-dep.tar.gz
  • change the folder name to horde
mv roundcubemail-0.3.1-dep roundcube

TroubleShooting

With older SUSE versions the following packages seemed necessary:

  • php5-pear-mail
  • php5-pear-mail-mime

See also