From 3996c279fdb067e2d9ffb0109d3b1016978f5c0d Mon Sep 17 00:00:00 2001 From: Samuel FORESTIER Date: Fri, 20 Oct 2023 14:32:06 +0200 Subject: [PATCH] Enforces `datareporting.policy.dataSubmissionPolicyBypassNotification` to completely disable telemetry (by preventing new data submission) --- user.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/user.js b/user.js index 5bef05c..ee8cd81 100644 --- a/user.js +++ b/user.js @@ -120,8 +120,10 @@ user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); /** TELEMETRY ***/ /* 0330: disable new data submission [FF41+] * If disabled, no policy is shown or upload takes place, ever - * [1] https://bugzilla.mozilla.org/1195552 ***/ + * [1] https://bugzilla.mozilla.org/1195552 + * [2] https://searchfox.org/comm-esr115/source/mail/components/telemetry/README.md#165 ***/ user_pref("datareporting.policy.dataSubmissionEnabled", false); +user_pref("datareporting.policy.dataSubmissionPolicyBypassNotification", true); /* 0331: disable Health Reports * [SETTING] Privacy & Security > Thunderbird Data Collection and Use > Allow Thunderbird to send technical... ***/ user_pref("datareporting.healthreport.uploadEnabled", false);