Ubuntu 14.04
Sponsored Link

Webメールシステム : RoundCube2016/01/31

 
RoundCube をインストールして、Yahoo メールや Hotmail のような Web メールシステムを構築します。 ここの例では下記の通り、同一 LAN 内の別ホストのメールサーバーを利用するように設定します。 またバックエンドでデータベースを使うため、MySQL, SQLite, PostgreSQL のいずれかを導入済みである必要があります。 ここでは MySQL 互換の MariaDB を利用するよう設定します。
 
www.srv.world
  - RoundCube 導入 Web サーバー
 
mail.srv.world
  - SMTP/IMAP サーバー
[1]
[2]
[3]
[4]
[5]
[6] RoundCube 用のデータベースを作成しておきます。
root@www:~#
mysql -u root -p

Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 36
Server version: 5.5.46-MariaDB-1ubuntu0.14.04.2 (Ubuntu)

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

# 「roundcube」データベース作成 ( 'password'の箇所は設定するパスワードを入力 )

MariaDB [(none)]>
create database roundcube;

Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on roundcube.* to roundcube@'localhost' identified by 'password';

Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
flush privileges;

Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
exit

Bye
[7] RoundCube のインストールと設定です。
root@www:~#
apt-get -y install roundcube roundcube-mysql
# データベースの設定は後ほど手動実行するとして、ここは「No」

 +----------------------+ Configuring roundcube-core +-----------------------+
 |                                                                           |
 | The roundcube package must have a database installed and configured       |
 | before it can be used.  This can be optionally handled with               |
 | dbconfig-common.                                                          |
 |                                                                           |
 | If you are an advanced database administrator and know that you want to   |
 | perform this configuration manually, or if your database has already      |
 | been installed and configured, you should refuse this option.  Details    |
 | on what needs to be done should most likely be provided in                |
 | /usr/share/doc/roundcube.                                                 |
 |                                                                           |
 | Otherwise, you should probably choose this option.                        |
 |                                                                           |
 | Configure database for roundcube with dbconfig-common?                    |
 |                                                                           |
 |                    <Yes>                       <No>                       |
 |                                                                           |
 +---------------------------------------------------------------------------+

root@www:~#
cd /usr/share/dbconfig-common/data/roundcube/install

root@www:/usr/share/dbconfig-common/data/roundcube/install#
mysql -u roundcube -p < mysql

Enter password:  
# MariaDB roundcube パスワード

root@www:/usr/share/dbconfig-common/data/roundcube/install#
root@www:~#
vi /etc/roundcube/debian-db.php
# データベース情報を設定

$dbuser='
roundcube
';
$dbpass='
password
';
$basepath='';
$dbname='
roundcube
';
$dbserver='';
$dbport='';
$dbtype='
mysql
';
root@www:~#
vi /etc/roundcube/main.inc.php
# 32行目:ログの日付形式を「年-月-日 時:分:秒」に変更

$rcmail_config['log_date_format'] = '
Y-M-d H:i:s O
';
# 78行目:IMAPサーバーを指定 (SSL経由)

$rcmail_config['default_host'] = '
ssl://mail.srv.world
';
# 81行目:IMAPポート変更 (SSL経由)

$rcmail_config['default_port'] =
993
;
# 146行目:SMTPサーバーを指定 (SSL経由)

$rcmail_config['smtp_server'] = '
ssl://mail.srv.world
';
# 150行目:SMTPポート変更 (SSL経由)

$rcmail_config['smtp_port'] =
465
;
# 154行目:変更 ( SMTP認証にIMAP認証と同じユーザー名を使う )

$rcmail_config['smtp_user'] = '
%u
';
# 158行目:変更 ( SMTP認証にIMAP認証と同じパスワードを使う )

$rcmail_config['smtp_pass'] = '
%p
';
# 162行目:変更 ( SMTP認証タイプ )

$rcmail_config['smtp_auth_type'] = '
LOGIN
';
# 174行目:SMTP HELO host を指定

$rcmail_config['smtp_helo_host'] = '
mail.srv.world
';
# 306行目:ドメインを指定

$rcmail_config['mail_domain'] = '
srv.world
';
# 324行目:UserAgent変更

$rcmail_config['useragent'] = '
Server World Webmail
';
# 327行目:表示画面のタイトルを変更

$rcmail_config['product_name'] = '
Server World Webmail
';
# 433行目:日本語に変更

$rcmail_config['language'] = '
ja_JP
';
# 436行目:表示画面の日付形式を「年.月.日 時:分」に変更

$rcmail_config['date_long'] = '
Y.m.d H:i
';
root@www:~#
vi /etc/apache2/conf-enabled/roundcube.conf
# 3-4行目:コメント解除

Alias /roundcube/program/js/tiny_mce/ /usr/share/tinymce/www/
Alias /roundcube /var/lib/roundcube
# 11行目:必要であればアクセス許可変更

Require ip 127.0.0.1 10.0.0.0/24
root@www:~#
php5enmod mcrypt

root@www:~#
/etc/init.d/apache2 restart

* Restarting web server apache2
...done.
[8] クライアントPC で Web ブラウザを起動し、「https://(サーバーのホスト名またはIPアドレス)/roundcube/」にアクセスします。 すると以下のようにログイン画面になるのでユーザー名とパスワードを入力してログインします。
[9] ログインできました。
関連コンテンツ