シンプルで信頼性の高いカレンダーサーバーとしてのRadicale

シンプルで信頼性の高いカレンダーサーバーとしてのRadicale

私のサーバーには、既に使用している Mozilla Thunderbird 電子メール クライアントと統合できるシンプルな (信頼性の高い) カレンダー サーバーが必要です。

Androidクライアントもありますか?

答え1

シンプルで信頼性の高いカレンダーサーバーとしてのRadicale

コピーおよび要約https://github.com/Kozea/Radicale/wiki/シンプルインストール

インストールが簡単

##### Install dependencies for Radicale
ServerUSER@Server:~$ sudo apt-get install python3-pip
##### Install dependencies for bcrypt encryption method
ServerUSER@Server:~$ sudo python3 -m pip install --upgrade passlib bcrypt
##### -H flag uses root's home rather than USER's home
ServerUSER@Server:~$ sudo -H python3 -m pip install --upgrade radicale

設定が簡単

##### Put user "fakeuser" in a new "users" file
ServerUSER@SERVER:~$ sudo htpasswd -B -c /etc/radicale/users fakeuser
New password:
Re-type new password:
##### Add another user
ServerUSER@SERVER:~$ sudo htpasswd -B /etc/radicale/users user2
New password:
Re-type new password:
##### Install dependencies for bcrypt encryption method
ServerUSER@SERVER:~$ sudo python3 -m pip install --upgrade passlib bcrypt

設定ファイルを編集する

ServerUSER@SERVER:~$ sudo nano /etc/radicale/config

Radicaleにユーザーの居場所を伝える

##### Add these lines under relevant portions of [auth] section
type = htpasswd
htpasswd_filename = /etc/radicale/users
# encryption method used in the htpasswd file
htpasswd_encryption = bcrypt

安全制限を追加する

##### Add these lines under relevant portions of [server] section
max_connections = 20
# 1 Megabyte
max_content_length = 10000000
# 10 seconds
timeout = 10

##### Add these lines under relevant portions of [auth] section
# Average delay after failed login attempts in seconds
delay = 1

他のマシンからのSSL/TLS接続を許可するようにファイルを編集する

##### Add these lines under relevant portions of [server] section
hosts = 0.0.0.0:5232
##### By setting ssl = True, Radicale no longer responds to HTTP requests.
ssl = True
certificate = /etc/ssl/radicale.cert.pem
key = /etc/ssl/radicale.key.pem

SSL/TLS キー

サーバー上のRadicalサービスへのHTTPS接続を可能にするために自己署名SSL/TLS証明書を作成します。

##### You can hit enter as an answer to all the questions to set the default except this one: 
##### "Common Name (eg, YOUR name) []:" where you will enter your domain name or dns record 
##### used for your development server, or in case of wildcard certificates, 
##### use an astrisk, like this: *.mycompany.com 
##### By using a self-signed certificate, your browser should warn you of this fact.
##### Confirm exception as you wish, but this exception is necessary to visit page.
ServerUSER@Server:~$ openssl req -nodes -newkey rsa:2048 -keyout /etc/ssl/radicale.key.pem -out /etc/ssl/radicale.cert.pem -x509 -days 365

Common Name (eg, YOUR name) []: developmentserver12345

ラディカルサービス

Radicale を常にバックグラウンドで実行できるようにサーバーにサービスを設定します

##### Create "radicale" user and group for Radicale service
ServerUSER@Server:~$ sudo useradd --system --home-dir / --shell /sbin/nologin radicale
##### Make storage folder writable by user "radicale"
ServerUSER@Server:~$ sudo mkdir -p /var/lib/radicale/collections
ServerUSER@Server:~$ sudo chown -R radicale:radicale /var/lib/radicale/collections
##### Make storage folder non-readable by others
ServerUSER@Server:~$ sudo chmod -R o= /var/lib/radicale/collections

/etc/systemd/system/radicale.serviceファイルを作成します。

ServerUSER@Server:~$ sudo nano /etc/systemd/system/radicale.service

以下を切り取って/etc/systemd/system/radicale.serviceの空のnano画面に保存します。

[Unit]
Description=A simple CalDAV (calendar) and CardDAV (contact) server
After=network.target
Requires=network.target

[Service]
ExecStart=/usr/bin/env python3 -m radicale
Restart=on-failure
User=radicale
# Deny other users access to the calendar data
UMask=0027
# Optional security settings
PrivateTmp=true
ProtectSystem=strict
ProtectHome=true
PrivateDevices=true
ProtectKernelTunables=true
ProtectKernelModules=true
ProtectControlGroups=true
NoNewPrivileges=true
ReadWritePaths=/var/lib/radicale/collections

[Install]
WantedBy=multi-user.target

サービスを手動で開始します (障害発生時やサーバーの再起動時にサービスは自動的に開始されます)

# Enable the service
ServerUSER@Server:~$ sudo systemctl enable radicale
# Start the service
ServerUSER@Server:~$ sudo systemctl start radicale
# Check the status of the service
ServerUSER@Server:~$ sudo systemctl status radicale
# View all log messages
ServerUSER@Server:~$ sudo journalctl --unit radicale.service

Thunderbirdに接続

Thunderbird で新しいカレンダーを作成する (パブリック IP アドレス サーバー)

  • サンダーバードを開く
    • 「イベントとタスク > カレンダー」をクリックします
    • 「ファイル > 新規 > カレンダー」をクリックします [または「カレンダー ペイン > カレンダー リスト」領域を右クリックして「新しいカレンダー」を選択します]
    • ダイアログボックスで「ネットワーク上」を選択し、「次へ」をクリックします。
    • フォーマットと場所を選択し、「次へ」をクリックします。
    • 名前、色、Thunderbirdのメールアカウントを入力し、「次へ」をクリックします。
      • 名前: TB to Server Real Radicale Calendar (TSRRC)
      • 色: [TSRRC のイベントを示す色]
      • メールアドレス: [デフォルト]
    • 「完了」をクリックします

Androidに接続

Android で新しいカレンダーを作成する (Public.IP.Address サーバー)

  • DAVdroidをインストールする
  • カレンダーを開く
  • 新しいカレンダーを手動で数回更新し、Radicale ログを確認してトラブルシューティングしてください。

答え2

owncloudをインストールできます。https://owncloud.org/

または:

関連情報