WebMail - RoundCube2011/06/26 |
Install RoundCube to build web-based mail transfer system like yahoo mail or hotmail.
SMTP/IMAP server is needed to run in your LAN.
And also MySQL Server is required.
(or SQLite, PostgreSQL) This example uses servers below for configuration of RoundCube.
www.srv.world - RoundCube Server mail.srv.world - SMTP/IMAP Server
|
|
[1] | Install RoundCube |
[root@www ~]#
[root@www ~]# yum --enablerepo=epel -y install roundcubemail php-pear-MDB2-Driver-mysql # install from EPEL mysql -u root -p # connect to MySQL Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.0.77 Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the buffer. # create "roundcube" database ( set your own password for 'password' section )
mysql>
create database roundcube character set utf8 collate utf8_bin; Query OK, 1 row affected (0.00 sec)
mysql>
grant all privileges on roundcube.* to roundcube@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) exit Bye [root@www ~]# cd /usr/share/doc/roundcubemail-*/SQL [root@www SQL]# mysql -u roundcube -p roundcube < mysql.initial.sql Enter password: [root@www SQL]#
[root@www ~]#
vi /etc/roundcubemail/db.inc.php # line 20: change like follows ( replace your password for 'password' ) $rcmail_config['db_dsnw'] = 'mysql://roundcube: password @localhost/roundcube ';
[root@www ~]#
vi /etc/roundcubemail/main.inc.php # line 38: specify IMAP server (SSL) $rcmail_config['default_host'] = ' ssl://mail.srv.world ';
# line 41: specify IMAP port (SSL) $rcmail_config['default_port'] = 993 ;
# line 50: specify domain name $rcmail_config['mail_domain'] = ' srv.world ';
# line 63: specify SMTP server (SSL) $rcmail_config['smtp_server'] = ' ssl://mail.srv.world ';
# line 66: specify SMTP port (SSL) $rcmail_config['smtp_port'] = 465 ;
# line 70: change ( use the same user for SMTP auth and IMAP auth ) $rcmail_config['smtp_user'] = ' %u ';
# line 74: change ( use the same password for SMTP auth and IMAP auth ) $rcmail_config['smtp_pass'] = ' %p ';
# line 78: change ( SMTP auth type ) $rcmail_config['smtp_auth_type'] = ' LOGIN ';
# line 84: specify SMTP HELO host $rcmail_config['smtp_helo_host'] = ' mail.srv.world ';
# line 121: change to your language $rcmail_config['locale_string'] = ' ja ';
# line 133: change UserAgent $rcmail_config['useragent'] = ' Server World Webmail ';
# line 136: change title $rcmail_config['product_name'] = ' Server World Webmail ';
# line 184: change default charaset for your language $rcmail_config['default_charset'] = ' iso-2022-jp ';
[root@www ~]#
vi /etc/httpd/conf.d/roundcubemail.conf # line 5: change Alias /roundcube /usr/share/roundcubemail
<Directory /usr/share/roundcubemail/>
[root@www ~]# Order Deny,Allow Deny from all Allow from 127.0.0.1 10.0.0.0/24 # IP address you allow </Directory> /etc/rc.d/init.d/httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] |
[2] | Access to 'http://(your server's name or IP address/)/roundcube/', then follwing sacreen is shown, then authenticate your user name and password to login. |
[3] | Just logined |
Sponsored Link |