EmailServer.RoundCube HistoryHide minor edits - Show changes to markup Thursday 23 April 2009, at 03:23 GMT+8
by -
Changed line 14 from:
You'll need to make sure you hvae a recent version of PHP installed. to:
You'll need to make sure you have a recent version of PHP installed. Thursday 23 April 2009, at 03:21 GMT+8
by -
Added line 57:
Added lines 77-87:
Resources
< ClamAV | EmailServer | Firewall > (:comments:) Thursday 23 April 2009, at 03:14 GMT+8
by -
Changed line 18 from:
rpm --import http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka to:
Changed line 33 from:
yum update php to:
Changed lines 39-42 from:
yum install php-pecl-Fileinfo yum install php-xml yum install php-mcrypt yum install php-gd to:
Changed line 47 from:
service httpd restart to:
Changed lines 52-55 from:
cd /www tar xzvf roundcubemail-0.2.1.tar.gz mv roundcubemail-0.2.1.tar.gz webmail chown apache.apache -R webmail to:
Thursday 23 April 2009, at 03:13 GMT+8
by -
Added lines 1-6:
Changed lines 11-13 from:
As a replacement, RoundCube looks promising: it looks good, has lots of features, is in active development and has a good user base and community. Installing to:
As a replacement, RoundCube looks promising: it does what it's supposed to (handle email), has a nice interface , is in active development and has a good user base and community. InstallingAdded line 17:
(:source lang=:) Changed lines 19-20 from:
to:
(:sourcend:) Added line 22:
(:source lang=:) Changed lines 29-30 from:
to:
(:sourcend:) Added line 32:
(:source lang=:) Changed lines 34-35 from:
RoundCube also relies on some PHP modules that may not be present, namely FileInfo and DOM.\\ to:
(:sourcend:) RoundCube also relies on some PHP modules that may not be present.\\ Changed lines 38-39 from:
yum php-pecl-fileinfo to:
(:source lang=:) yum install php-pecl-Fileinfo Changed lines 41-49 from:
to:
yum install php-mcrypt yum install php-gd (:sourcend:) Make sure to restart apache for all changes to become visible: (:source lang=:) service httpd restart (:sourcend:) Added line 51:
(:source lang=:) Changed lines 55-56 from:
cd webmail to:
chown apache.apache -R webmail (:sourcend:) You can use Postgre, MySQL or SQLite as a back-end database. For MySQL, just add a new database and create a new user: (:source lang=:) CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; GRANT ALL PRIVILEGES ON roundcubemail.* TO username@localhost IDENTIFIED BY 'password'; FLUSH PRIVILEGES; quit (:sourcend:) Then create the database schema: (:source lang=:)
(:sourcend:) Open your browser and then point to the installer: http://example.com/installer/ Just follow the instructions on screen. All these instructions are available on the RoundCube website: http://trac.roundcube.net/wiki/Howto_Install Thursday 23 April 2009, at 01:47 GMT+8
by -
Added lines 1-35:
In my previous versions I used SquirrelMail as the web based mail access for roaming users. Squirrelmail is mature and has lots of nice features but users tend to look down on it because it's ugly and looks and feels antiquated. As a replacement, RoundCube looks promising: it looks good, has lots of features, is in active development and has a good user base and community. Installing
You'll need to make sure you hvae a recent version of PHP installed.
CentOS 5.2 comes with an older version and to update to the minimum required I had to update it through unofficial packages. Then Add the following to a new repo file: /etc/yum.repos.d/utterramblings.repo [utterramblings] name=Jason's Utter Ramblings Repo baseurl=http://www.jasonlitka.com/media/EL$releasever/$basearch/ enabled=1 gpgcheck=1 gpgkey=http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka Then just update your php to pull it from the new repository: yum update php RoundCube also relies on some PHP modules that may not be present, namely FileInfo and DOM. yum php-pecl-fileinfo yum install php-xml Once you're done, download the latest stable release of RoundCube and untar it in your web server's root: cd /www tar xzvf roundcubemail-0.2.1.tar.gz mv roundcubemail-0.2.1.tar.gz webmail cd webmail |