2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

RainLoop の使い方

Last updated at Posted at 2020-12-09

RainLoopというWebMail の使い方です。
私は、localhost の Nginx で使っています。
rainloop_aa.png

ソースの取得

https://www.rainloop.net/repository/webmail/rainloop-community-latest.zip

zip を /var/www/html/rainloop で解凍します。

unzip rainloop-community-latest.zip

次のようなツリー構造が出来ます。

$ tree -L 3
.
├── data
│   ├── EMPTY
│   └── VERSION
├── index.php
└── rainloop
    └── v
        └── 1.14.0

パーミッションの変更

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
sudo chown -R www-data:www-data .

ブラウザーで http://localhost/rainloop/ にアクセスするとログイン画面が表示されます。まだ、ログインはできません。

ブラウザーで http://localhost/rainloop/?admin/ にアクセスします。
Login: admin
Password: 12345
でログインします。
rainloop_bb.png

admin のパスワードを変更します。
rainloop_cc.png

メールのドメインを登録します。
rainloop_dd.png

rainloop_ee.png

設定のサンプル
rainloop_ff.png

data に外部からアクセスできないようにする Nginx の設定
http (80) と https(443) を使っている時は両方に設定する必要があります。

location ~ /rainloop/data {
                deny all;
        }
2
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?