mirror of
https://github.com/HorlogeSkynet/thunderbird-user.js.git
synced 2025-09-01 09:28:32 +02:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
eb8cade42e | |||
c57ead1b76 | |||
3ce96df737 | |||
49921ed98c |
4
LICENSE
4
LICENSE
@ -1,6 +1,8 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2019 ghacksuserjs
|
Copyright (c) 2019-2020 HorlogeSkynet
|
||||||
|
Copyright (c) 2019 dngray
|
||||||
|
Copyright (c) 2019 ghacksuserjs
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
15
user.js
15
user.js
@ -1,7 +1,7 @@
|
|||||||
/******
|
/******
|
||||||
* name: ghacks thunderbird user.js
|
* name: ghacks thunderbird user.js
|
||||||
* date: 24 November 2019
|
* date: 16 April 2020
|
||||||
* version v68.0-beta: "Knock on Pants"
|
* version v68.0-beta4: "Knock on Pants"
|
||||||
* authors: v52+ github | v51- www.ghacks.net
|
* authors: v52+ github | v51- www.ghacks.net
|
||||||
* url: https://github.com/HorlogeSkynet/thunderbird-user.js
|
* url: https://github.com/HorlogeSkynet/thunderbird-user.js
|
||||||
* license: MIT (https://github.com/HorlogeSkynet/thunderbird-user.js/blob/master/LICENSE)
|
* license: MIT (https://github.com/HorlogeSkynet/thunderbird-user.js/blob/master/LICENSE)
|
||||||
@ -151,16 +151,18 @@ user_pref("extensions.getAddons.showPane", false); // [HIDDEN PREF]
|
|||||||
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
||||||
user_pref("extensions.webservice.discoverURL", "");
|
user_pref("extensions.webservice.discoverURL", "");
|
||||||
/* 0330: disable telemetry
|
/* 0330: disable telemetry
|
||||||
* the pref (.unified) affects the behaviour of the pref (.enabled)
|
* the pref (.unified) affects the behavior of the pref (.enabled)
|
||||||
* IF unified=false then .enabled controls the telemetry module
|
* IF unified=false then .enabled controls the telemetry module
|
||||||
* IF unified=true then .enabled ONLY controls whether to record extended data
|
* IF unified=true then .enabled ONLY controls whether to record extended data
|
||||||
* so make sure to have both set as false
|
* so make sure to have both set as false.
|
||||||
|
* Restoring prompted=0 would make TB ask you on fresh install.
|
||||||
* [NOTE] FF58+ `toolkit.telemetry.enabled` is now LOCKED to reflect prerelease
|
* [NOTE] FF58+ `toolkit.telemetry.enabled` is now LOCKED to reflect prerelease
|
||||||
* or release builds (true and false respectively), see [2]
|
* or release builds (true and false respectively), see [2].
|
||||||
* [1] https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/internals/preferences.html
|
* [1] https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/internals/preferences.html
|
||||||
* [2] https://medium.com/georg-fritzsche/data-preference-changes-in-firefox-58-2d5df9c428b5 ***/
|
* [2] https://medium.com/georg-fritzsche/data-preference-changes-in-firefox-58-2d5df9c428b5 ***/
|
||||||
user_pref("toolkit.telemetry.unified", false);
|
user_pref("toolkit.telemetry.unified", false);
|
||||||
user_pref("toolkit.telemetry.enabled", false); // see [NOTE] above FF58+
|
user_pref("toolkit.telemetry.enabled", false); // see [NOTE] above FF58+
|
||||||
|
user_pref("toolkit.telemetry.prompted", 2);
|
||||||
user_pref("toolkit.telemetry.server", "data:,");
|
user_pref("toolkit.telemetry.server", "data:,");
|
||||||
user_pref("toolkit.telemetry.archive.enabled", false);
|
user_pref("toolkit.telemetry.archive.enabled", false);
|
||||||
user_pref("toolkit.telemetry.newProfilePing.enabled", false); // [FF55+]
|
user_pref("toolkit.telemetry.newProfilePing.enabled", false); // [FF55+]
|
||||||
@ -534,7 +536,8 @@ user_pref("security.family_safety.mode", 0);
|
|||||||
/* 1223: enforce strict pinning
|
/* 1223: enforce strict pinning
|
||||||
* PKP (Public Key Pinning) 0=disabled 1=allow user MiTM (such as your antivirus), 2=strict
|
* PKP (Public Key Pinning) 0=disabled 1=allow user MiTM (such as your antivirus), 2=strict
|
||||||
* [SETUP-INSTALL] If you rely on an AV (anti-virus) to protect your web browsing
|
* [SETUP-INSTALL] If you rely on an AV (anti-virus) to protect your web browsing
|
||||||
* by inspecting ALL your web traffic, then leave at current default=1
|
* by inspecting ALL your web traffic, then leave at current 1 (default).
|
||||||
|
* [NOTE] It needs to be set to 1 when connecting to the ProtonMail's Bridge for the first time.
|
||||||
* [1] https://trac.torproject.org/projects/tor/ticket/16206 ***/
|
* [1] https://trac.torproject.org/projects/tor/ticket/16206 ***/
|
||||||
user_pref("security.cert_pinning.enforcement_level", 2);
|
user_pref("security.cert_pinning.enforcement_level", 2);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user