1

calDav サーバーをセットアップし、企業内での展開を計画していますが、Thunderbird.cfg、default.js、all.js、または user.js を使用して Thunderbird で calDav カレンダーを作成するのに問題があります。Thunderbird でこれらのカレンダーの作成を自動化する方法はありますか、それともアドオンを作成する必要がありますか?

どんな助けでも大歓迎です。

4

1 に答える 1

2

Lightningカレンダーは、標準の設定を使用して作成し、説明したメカニズム(Thunderbird.cfg、default.js、all.js、user.jsなど)を使用して挿入できます。これらは必須の設定です:

calendar.registry.{uuid}.type = "caldav"
calendar.registry.{uuid}.uri = "https://path/to/calendar/"
calendar.registry.{uuid}.name = "My Calendar"

そして、これらはオプションです:

calendar.registry.{uuid}.cache.enabled = true
calendar.registry.{uuid}.color = "#330099"
// id1 must be the key as in prefs.js for the email identity.
calendar.registry.{uuid}.imip.identity.key = "id1"
calendar.registry.{uuid}.readOnly = true
calendar.registry.{uuid}.refreshInterval = 30 // minutes
// visible, i.e checked in the calendar list
calendar.registry.{uuid}.calendar-main-in-composite = true 
于 2013-03-15T09:14:42.137 に答える