From 749e0876d9f940ca9b22a2b5897e2f3975680c33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Tue, 20 May 2025 13:04:26 +0200 Subject: [PATCH] Disable sending Firefox usage data Disable sending Firefox usage data to Mozilla for increased privacy, disable installing studies. --- .../root/.mozilla/firefox/profile/user.js.template | 5 +++++ live/src/agama-installer.changes | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/live/live-root/root/.mozilla/firefox/profile/user.js.template b/live/live-root/root/.mozilla/firefox/profile/user.js.template index 7dad31db23..3eee9b0194 100644 --- a/live/live-root/root/.mozilla/firefox/profile/user.js.template +++ b/live/live-root/root/.mozilla/firefox/profile/user.js.template @@ -16,6 +16,11 @@ user_pref("browser.startup.couldRestoreSession.count", 0); // disable homepage override on updates user_pref("browser.startup.homepage_override.mstone", "ignore"); +// disable sending Firefox usage and telemetry data for increased privacy +user_pref("datareporting.healthreport.uploadEnabled", false); +user_pref("datareporting.usage.uploadEnabled", false); +user_pref("toolkit.telemetry.reportingpolicy.firstRun", false); + // workaround for non working file picker, disable XDG portal, use the FF native popup // TODO: make the XDG portal working again, it has more features (mounting USB flash) user_pref("widget.use-xdg-desktop-portal.file-picker", 0); diff --git a/live/src/agama-installer.changes b/live/src/agama-installer.changes index 32ed8c7e7a..9b5de203f7 100644 --- a/live/src/agama-installer.changes +++ b/live/src/agama-installer.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue May 20 08:42:29 UTC 2025 - Ladislav Slezák + +- Disable sending Firefox usage data to Mozilla for increased + privacy, disable installing studies + ------------------------------------------------------------------- Tue May 13 16:56:56 UTC 2025 - Ladislav Slezák