Explicitly disables system timezone detection (9312)

Starting with Thunderbird 115ESR, system timezone detection no longer
relies solely on the `calendar.timezone.local` preference.

> closes #69
This commit is contained in:
Samuel FORESTIER
2025-09-28 14:33:49 +02:00
parent 2b839ae6ca
commit 9fa3c438a4

View File

@@ -1472,10 +1472,12 @@ user_pref("mail.chat.notification_info", 2);
/** CALENDAR ***/ /** CALENDAR ***/
/* 9312: Set calendar timezone to avoid system detection [SETUP-INSTALL] /* 9312: Set calendar timezone to avoid system detection [SETUP-INSTALL]
* By default, extensive system detection would be performed to find user's current timezone. * By default, extensive system detection is performed to find current timezone (if OS supports it).
* Setting this preference to "UTC" should disable it. * Disable system detection and set timezone to "UTC".
* You may also directly set it to your timezone, i.e. "Pacific/Fakaofo" * You may also directly set it to your timezone, i.e. "Pacific/Fakaofo"
* [SETTING] Calendar > Calendar > Timezone ***/ * [SETTING] Calendar > Calendar > Set timezone manually / Timezone
* [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1606357 ***/
user_pref("calendar.timezone.useSystemTimezone", false);
user_pref("calendar.timezone.local", "UTC"); // [DEFAULT: ""] user_pref("calendar.timezone.local", "UTC"); // [DEFAULT: ""]
/* 9313: Disable calendar service performing event "extraction" from email content ***/ /* 9313: Disable calendar service performing event "extraction" from email content ***/
// user_pref("calendar.extract.service.enabled", false); // [DEFAULT: false] // user_pref("calendar.extract.service.enabled", false); // [DEFAULT: false]