Search Site:

About

Linux

Printers?

Programming

Windows?

Download

Skins

Edit - To Do - AllRecentChanges

Recent Changes Printable View Page History Edit Page

EmailServer.RoundCube History

Hide minor edits - Show changes to markup

Thursday 23 April 2009, at 03:23 GMT+8 by 192.168.0.101 -
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 192.168.0.101 -
Added line 57:
Added lines 77-87:

Resources

  • RoundCube main site
  • Jason Litka CentOS Yum repository

< ClamAV | EmailServer | Firewall >

(:comments:)

Thursday 23 April 2009, at 03:14 GMT+8 by 192.168.0.101 -
Changed line 18 from:

rpm --import http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka

to:
  1. rpm --import http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka
Changed line 33 from:

yum update php

to:
  1. yum update php
Changed lines 39-42 from:

yum install php-pecl-Fileinfo yum install php-xml yum install php-mcrypt yum install php-gd

to:
  1. yum install php-pecl-Fileinfo
  2. yum install php-xml
  3. yum install php-mcrypt
  4. yum install php-gd
Changed line 47 from:

service httpd restart

to:
  1. service httpd restart
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:
  1. cd /www
  2. tar xzvf roundcubemail-0.2.1.tar.gz
  3. mv roundcubemail-0.2.1.tar.gz webmail
  4. chown apache.apache -R webmail
Thursday 23 April 2009, at 03:13 GMT+8 by 192.168.0.101 -
Added lines 1-6:

This page is part of the EmailServer article.

RoundCube webmail interface

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.

Installing

Added 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=:)

  1. mysql roundcubemail < SQL/mysql.initial.sql

(: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 192.168.0.101 -
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.
Fortunately, there is a good repository from Jason Litka and to add it to our list of repositories is simple: rpm --import http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka

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.
To install them:

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

Edit Page - Page History - Printable View - Recent Changes - WikiHelp - Search - RSS -
Page last modified on Thursday 23 April 2009, at 03:23 GMT+8 - Viewed 2355 times