Skip to content

Commit

Permalink
More telemetry disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
K4sum1 committed Aug 22, 2024
1 parent 7bf0775 commit 65db6d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions browser/app/profile/firefox.js
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ pref("browser.xul.error_pages.expert_bad_cert", false);
pref("browser.xul.error_pages.show_safe_browsing_details_on_load", false);

// Enable captive portal detection.
pref("network.captive-portal-service.enabled", true);
pref("network.captive-portal-service.enabled", false);

// If true, network link events will change the value of navigator.onLine
pref("network.manage-offline-status", true);
Expand Down Expand Up @@ -1417,7 +1417,7 @@ pref("browser.zoom.full", true);
pref("browser.zoom.updateBackgroundTabs", true);

// The breakpad report server to link to in about:crashes
pref("breakpad.reportURL", "https://crash-stats.mozilla.org/report/index/");
pref("breakpad.reportURL", "");

// URL for "Learn More" for DataCollection
pref("toolkit.datacollection.infoURL",
Expand Down Expand Up @@ -2364,7 +2364,7 @@ pref("browser.tabs.remote.warmup.maxTabs", 3);
pref("browser.tabs.remote.warmup.unloadDelayMs", 2000);

// For the about:tabcrashed page
pref("browser.tabs.crashReporting.sendReport", true);
pref("browser.tabs.crashReporting.sendReport", false);
pref("browser.tabs.crashReporting.includeURL", false);

// If true, unprivileged extensions may use experimental APIs on
Expand Down Expand Up @@ -2487,7 +2487,7 @@ pref("signon.suggestImportCount", 3);

// Space separated list of URLS that are allowed to send objects (instead of
// only strings) through webchannels. Bug 1275612 tracks removing this pref and capability.
pref("webchannel.allowObject.urlWhitelist", "https://content.cdn.mozilla.net https://install.mozilla.org");
pref("webchannel.allowObject.urlWhitelist", "");

// Whether or not the browser should scan for unsubmitted
// crash reports, and then show a notification for submitting
Expand Down Expand Up @@ -2569,7 +2569,8 @@ pref("app.shield.optoutstudies.enabled", false);

// Coverage ping is disabled by default.
pref("toolkit.coverage.enabled", false);
pref("toolkit.coverage.endpoint.base", "https://coverage.mozilla.org");
pref("toolkit.coverage.opt-out", true);
pref("toolkit.coverage.endpoint.base", "");

// Discovery prefs
pref("browser.discovery.enabled", true);
Expand Down
6 changes: 3 additions & 3 deletions modules/libpref/init/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -3434,7 +3434,7 @@ pref("network.captive-portal-service.maxInterval", 1500000); // 25 minutes
pref("network.captive-portal-service.backoffFactor", "5.0");
pref("network.captive-portal-service.enabled", false);

pref("network.connectivity-service.enabled", true);
pref("network.connectivity-service.enabled", false);
pref("network.connectivity-service.DNSv4.domain", "example.org");
pref("network.connectivity-service.DNSv6.domain", "example.org");
pref("network.connectivity-service.DNS_HTTPS.domain", "cloudflare-dns.com");
Expand All @@ -3454,7 +3454,7 @@ pref("network.trr.builtin-excluded-domains", "localhost,local");
// Whether the checkbox to display a fallback warning error page is visible in about:preferences#privacy
pref("network.trr_ui.show_fallback_warning_option", false);

pref("captivedetect.canonicalURL", "http://detectportal.firefox.com/canonical.html");
pref("captivedetect.canonicalURL", "");
pref("captivedetect.canonicalContent", "<meta http-equiv=\"refresh\" content=\"0;url=https://support.mozilla.org/kb/captive-portal\"/>");
pref("captivedetect.maxWaitingTime", 5000);
pref("captivedetect.pollingTime", 3000);
Expand Down Expand Up @@ -3884,8 +3884,8 @@ pref("toolkit.aboutProcesses.profileDuration", 5);
// * userChrome.css
pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);

#ifdef MOZ_DATA_REPORTING
pref("datareporting.policy.dataSubmissionEnabled", false);
#ifdef MOZ_DATA_REPORTING
pref("datareporting.policy.dataSubmissionPolicyNotifiedTime", "0");
pref("datareporting.policy.dataSubmissionPolicyAcceptedVersion", 0);
pref("datareporting.policy.dataSubmissionPolicyBypassNotification", false);
Expand Down

0 comments on commit 65db6d0

Please sign in to comment.