Webmailシステム構築(RoundCube Webmail)
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[CentOS7]]
*Webmailシステム構築([[RoundCube Webmail>http://roundcube...
''Hotmail''や''Yahoo!''メールのように''Web''ブラウザ上で...
''[[RoundCube Webmail>http://roundcube.net/]]''は''Ajax''...
*RoundCube Webmailインストール [#vabd9bd8]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# wget https://github.com/roundcube/ro...
|&color(lightpink){※最新版のURLは[[ダウンロードページ>htt...
|[root@localhost ~]# tar zxvf roundcubemail-*.tar.gz &col...
|[root@localhost ~]# mv roundcubemail-*/ /var/www/roundcu...
|[root@localhost ~]# chmod o+w /var/www/roundcubemail/tem...
|[root@localhost ~]# chmod o+w /var/www/roundcubemail/log...
|[root@localhost ~]# rm -f roundcubemail-*.tar.gz &color(...
*DB設定 [#q8c543ac]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# yum -y install php-mysql php-xml &co...
|[root@localhost ~]# mysql -u root -p &color(lime){← デ...
|Enter password: &color(lime){← データベースサーバーの''...
|MariaDB [(none)]> CREATE DATABASE roundcubemail; &color(...
|Query OK, 1 row affected (0.00 sec)|
|MariaDB [(none)]> GRANT ALL PRIVILEGES ON roundcubemail....
|Query OK, 0 rows affected (0.00 sec)|
|MariaDB [(none)]> exit &color(lime){← データベースサー...
|Bye|
|[root@localhost ~]# mysql -u roundcube -p roundcubemail ...
|Enter password: &color(lime){← データベースサーバーの''...
*RoundCube Webmail設定 [#f8ab472f]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# vi /etc/php.ini &color(lime){← ''PH...
|[Date] &br; ; Defines the default timezone used by the d...
|[root@localhost ~]# vi /var/www/roundcubemail/config/def...
|// This domain will be used to form e-mail addresses of ...
|[root@localhost ~]# echo Alias /roundcubemail /var/www/r...
|&color(lime){※https://サーバー名/roundcubemail/で''Web''...
|[root@localhost ~]# systemctl reload httpd &color(lime){...
''Web''ブラウザでhttps://サーバー名/roundcubemail/install...
「''NEXT''」ボタン押下
**Logging & Debugging [#w9bc456a]
「''log_driver''」で"''syslog''”を選択※ログを''/var/log/m...
**Database setup [#f9cb5059]
「''Database password''」に''roundcubemail''データベース...
**IMAP Settings [#v147c143]
「''default_host''」にメールサーバー名(例:mail.hoge.com...
「''junk_mbox''」に"''Spam''"と入力
**SMTP Settings [#db477f2f]
「''smtp_server''」にメールサーバー名(例:mail.hoge.com)...
「''Use the current IMAP username and password for SMTP a...
**Display settings & user prefs [#gce26039]
「''language''」に"''ja_JP''"と入力
「''CREATE CONFIG''」ボタン押下
「''Download''」ボタン押下
ダウンロードした''config.inc.php''を''WinSCP''で''/var/ww...
「''CONTINUE''」ボタン押下
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# rm -rf /var/www/roundcubemail/instal...
*RoundCube Webmail確認 [#wf3e6a77]
http://サーバー名/roundcubemail/にアクセスして''RoundCube...
また、URLがhttps://サーバー名/roundcubemail/となっている...
&color(red){※ログイン名にはメールアカウント名(例:hoge)、...
*プラグイン追加(任意) [#s9e75dc2]
[[プラグイン>https://plugins.roundcube.net/explore/]]を追...
**コンテキストメニュー [#idad0096]
右クリックで返信、転送、削除、既読未読設定、フラグ設定解...
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# git clone https://github.com/JohnDoh...
|[root@localhost ~]# vi /var/www/roundcubemail/config/con...
|// ---------------------------------- &br; // PLUGINS &b...
**モバイル対応 [#p2a3fa17]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# rm -rf /var/www/roundcubemail/skins/...
|[root@localhost ~]# rm -rf /var/www/roundcubemail/plugin...
|[root@localhost ~]# rm -rf /var/www/roundcubemail/plugin...
|[root@localhost ~]# vi /var/www/roundcubemail/config/con...
|// ---------------------------------- &br; // PLUGINS &b...
*スキン追加(任意) [#l5460e34]
スキンを追加してユーザーインタフェース(見た目)を変更す...
**[[LiteCube Free>http://roundcubeskins.net/skins/litecub...
''[[LiteCube Free>http://roundcubeskins.net/skins/litecub...
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# tar zxvf roundcube_plus_skin_litecub...
|[root@localhost ~]# mv plugins/xskin/ /var/www/roundcube...
|[root@localhost ~]# mv plugins/xframework/ /var/www/roun...
|[root@localhost ~]# mv skins/litecube-f/ /var/www/roundc...
|[root@localhost ~]# vi /var/www/roundcubemail/config/con...
|// ---------------------------------- &br; // PLUGINS &b...
|[root@localhost ~]# rm -rf plugins/ skins/ README &color...
|[root@localhost ~]# rm -f roundcube_plus_skin_litecube-f...
*RoundCube Webmailアップグレード [#ka5b7cd6]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# wget https://github.com/roundcube/ro...
|&color(lime){※最新版のURLは[[ダウンロードページ>https://...
|[root@localhost ~]# tar zxvf roundcubemail-*-complete.ta...
|[root@localhost ~]# cd roundcubemail-* &color(lime){← '...
|[root@centos roundcubemail-1.3.4]# ./bin/installto.sh /v...
|Upgrading from 1.1.4. Do you want to continue? (y/N) &co...
|[root@centos roundcubemail-1.3.4]# cd &color(lime){← ホ...
|[root@localhost ~]# rm -rf roundcubemail-* &color(lime){...
|[root@localhost ~]# /var/www/roundcubemail/bin/indexcont...
終了行:
[[CentOS7]]
*Webmailシステム構築([[RoundCube Webmail>http://roundcube...
''Hotmail''や''Yahoo!''メールのように''Web''ブラウザ上で...
''[[RoundCube Webmail>http://roundcube.net/]]''は''Ajax''...
*RoundCube Webmailインストール [#vabd9bd8]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# wget https://github.com/roundcube/ro...
|&color(lightpink){※最新版のURLは[[ダウンロードページ>htt...
|[root@localhost ~]# tar zxvf roundcubemail-*.tar.gz &col...
|[root@localhost ~]# mv roundcubemail-*/ /var/www/roundcu...
|[root@localhost ~]# chmod o+w /var/www/roundcubemail/tem...
|[root@localhost ~]# chmod o+w /var/www/roundcubemail/log...
|[root@localhost ~]# rm -f roundcubemail-*.tar.gz &color(...
*DB設定 [#q8c543ac]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# yum -y install php-mysql php-xml &co...
|[root@localhost ~]# mysql -u root -p &color(lime){← デ...
|Enter password: &color(lime){← データベースサーバーの''...
|MariaDB [(none)]> CREATE DATABASE roundcubemail; &color(...
|Query OK, 1 row affected (0.00 sec)|
|MariaDB [(none)]> GRANT ALL PRIVILEGES ON roundcubemail....
|Query OK, 0 rows affected (0.00 sec)|
|MariaDB [(none)]> exit &color(lime){← データベースサー...
|Bye|
|[root@localhost ~]# mysql -u roundcube -p roundcubemail ...
|Enter password: &color(lime){← データベースサーバーの''...
*RoundCube Webmail設定 [#f8ab472f]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# vi /etc/php.ini &color(lime){← ''PH...
|[Date] &br; ; Defines the default timezone used by the d...
|[root@localhost ~]# vi /var/www/roundcubemail/config/def...
|// This domain will be used to form e-mail addresses of ...
|[root@localhost ~]# echo Alias /roundcubemail /var/www/r...
|&color(lime){※https://サーバー名/roundcubemail/で''Web''...
|[root@localhost ~]# systemctl reload httpd &color(lime){...
''Web''ブラウザでhttps://サーバー名/roundcubemail/install...
「''NEXT''」ボタン押下
**Logging & Debugging [#w9bc456a]
「''log_driver''」で"''syslog''”を選択※ログを''/var/log/m...
**Database setup [#f9cb5059]
「''Database password''」に''roundcubemail''データベース...
**IMAP Settings [#v147c143]
「''default_host''」にメールサーバー名(例:mail.hoge.com...
「''junk_mbox''」に"''Spam''"と入力
**SMTP Settings [#db477f2f]
「''smtp_server''」にメールサーバー名(例:mail.hoge.com)...
「''Use the current IMAP username and password for SMTP a...
**Display settings & user prefs [#gce26039]
「''language''」に"''ja_JP''"と入力
「''CREATE CONFIG''」ボタン押下
「''Download''」ボタン押下
ダウンロードした''config.inc.php''を''WinSCP''で''/var/ww...
「''CONTINUE''」ボタン押下
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# rm -rf /var/www/roundcubemail/instal...
*RoundCube Webmail確認 [#wf3e6a77]
http://サーバー名/roundcubemail/にアクセスして''RoundCube...
また、URLがhttps://サーバー名/roundcubemail/となっている...
&color(red){※ログイン名にはメールアカウント名(例:hoge)、...
*プラグイン追加(任意) [#s9e75dc2]
[[プラグイン>https://plugins.roundcube.net/explore/]]を追...
**コンテキストメニュー [#idad0096]
右クリックで返信、転送、削除、既読未読設定、フラグ設定解...
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# git clone https://github.com/JohnDoh...
|[root@localhost ~]# vi /var/www/roundcubemail/config/con...
|// ---------------------------------- &br; // PLUGINS &b...
**モバイル対応 [#p2a3fa17]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# rm -rf /var/www/roundcubemail/skins/...
|[root@localhost ~]# rm -rf /var/www/roundcubemail/plugin...
|[root@localhost ~]# rm -rf /var/www/roundcubemail/plugin...
|[root@localhost ~]# vi /var/www/roundcubemail/config/con...
|// ---------------------------------- &br; // PLUGINS &b...
*スキン追加(任意) [#l5460e34]
スキンを追加してユーザーインタフェース(見た目)を変更す...
**[[LiteCube Free>http://roundcubeskins.net/skins/litecub...
''[[LiteCube Free>http://roundcubeskins.net/skins/litecub...
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# tar zxvf roundcube_plus_skin_litecub...
|[root@localhost ~]# mv plugins/xskin/ /var/www/roundcube...
|[root@localhost ~]# mv plugins/xframework/ /var/www/roun...
|[root@localhost ~]# mv skins/litecube-f/ /var/www/roundc...
|[root@localhost ~]# vi /var/www/roundcubemail/config/con...
|// ---------------------------------- &br; // PLUGINS &b...
|[root@localhost ~]# rm -rf plugins/ skins/ README &color...
|[root@localhost ~]# rm -f roundcube_plus_skin_litecube-f...
*RoundCube Webmailアップグレード [#ka5b7cd6]
|BGCOLOR(black):COLOR(white):|c
|[root@localhost ~]# wget https://github.com/roundcube/ro...
|&color(lime){※最新版のURLは[[ダウンロードページ>https://...
|[root@localhost ~]# tar zxvf roundcubemail-*-complete.ta...
|[root@localhost ~]# cd roundcubemail-* &color(lime){← '...
|[root@centos roundcubemail-1.3.4]# ./bin/installto.sh /v...
|Upgrading from 1.1.4. Do you want to continue? (y/N) &co...
|[root@centos roundcubemail-1.3.4]# cd &color(lime){← ホ...
|[root@localhost ~]# rm -rf roundcubemail-* &color(lime){...
|[root@localhost ~]# /var/www/roundcubemail/bin/indexcont...
ページ名: