Roundcube webmail
Roundcube is a browser-based multilingual IMAP client with an application-like user interface. It provides full functionality you expect from an email client, including MIME support, address book, folder manipulation, message searching and spell checking
Features
- Multilingual capabilities
- Find-as-you-type address book
- Richtext/HTML message composing
- Searching messages and contacts
- Canned response templatesNew!
- Int. domain names (IDNA)
- Shared folders and ACL
- Full featured address book
- Extensible using the Plug-in API
Roundcubemail Webmail Installation
Install Following Packges:-
yum install httpd
yum install php
yum install php-common
yum install php-json
yum install php-xml
yum install php-mbstring
yum install php-imap
yum install php-pear-DB
yum install php-mysql
yum install mysql
yum install mysql-server
yum install php-mcrypt --enablerepo=centosplus
Set Time Zone in php :-
#vi /etc.php.ini
(Time Zone Should be date.timezone = Asia/Kolkata )
Download roundcubemail-0.8.6.tar.gz :-
#wget http://sourceforge.net/projects/roundcubemail/files/roundcubemail/0.8.6/roundcubemail-0.8.6.tar.gz/download
Extrace Tar File:-
#tar zxvf roundcubemail-0.8.6.tar.gz
Move Extracted Directory to Your Mail Setup Directory or Anywhere you want. :-
#mv roundcubemail-0.8.6 /opt/mail_setup/roundcubemail
Change Owner & Group of directory :-
#chown -R apache.apache /opt/mail_setup/roundcubemail/
Following is the Webserver (Apache) Configuration) :-
#vi /etc/httpd/conf/httpd.conf
### WEBMAIL ###
Alias /roundcubemail /opt/mail_setup/roundcubemail/
<Directory /opt/mail_setup/roundcubemail/>
Options Indexes
AllowOverride none
DirectoryIndex index.php
Order allow,deny
allow from all
</Directory>
Databse Server (Mysql) Configuration :-
#mysql -uroot -p
#CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
#GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost IDENTIFIED BY 'roundcube';
Open the link in the web browser :-
http://SERVER-IP/roundcubemail/installer
http://172.16.16.246/roundcubemail/installer
Follow the installation steps & Continue the installation
Create Following Both the file as per intructions on Webpage
#cd /opt/mail_setup/roundcubemail/config
#vi main.inc.php
#vi db.inc.php
#Remove the installer directory :-
#rm -rf /var/www/html/roundcubemail/installer
Njoy Roundcubemail :)
Ref:http://roundcube.net/
No comments:
Post a Comment