Pier Angelo Vendrame pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser

Commits:

3 changed files:

Changes:

  • browser/app/profile/001-base-profile.js
    ... ... @@ -242,6 +242,7 @@ pref("privacy.donottrackheader.enabled", false); // (mullvad-browser#17)
    242 242
     // Make sure there is no Tracking Protection active in Tor Browser, see: #17898.
    
    243 243
     pref("privacy.trackingprotection.enabled", false);
    
    244 244
     pref("privacy.trackingprotection.pbmode.enabled", false);
    
    245
    +pref("privacy.trackingprotection.emailtracking.pbmode.enabled", false);
    
    245 246
     pref("privacy.trackingprotection.annotate_channels", false);
    
    246 247
     pref("privacy.trackingprotection.cryptomining.enabled", false);
    
    247 248
     pref("privacy.trackingprotection.fingerprinting.enabled", false);
    

  • mobile/android/android-components/components/concept/engine/src/test/java/mozilla/components/concept/engine/SettingsTest.kt
    ... ... @@ -180,7 +180,7 @@ class SettingsTest {
    180 180
                 cookieBannerHandlingDetectOnlyMode = true,
    
    181 181
                 cookieBannerHandlingGlobalRules = true,
    
    182 182
                 cookieBannerHandlingGlobalRulesSubFrames = true,
    
    183
    -            emailTrackerBlockingPrivateBrowsing = true,
    
    183
    +            emailTrackerBlockingPrivateBrowsing = false,
    
    184 184
             )
    
    185 185
     
    
    186 186
             assertFalse(defaultSettings.domStorageEnabled)
    

  • mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/Core.kt
    ... ... @@ -156,7 +156,7 @@ class Core(
    156 156
                 cookieBannerHandlingDetectOnlyMode = context.settings().shouldEnableCookieBannerDetectOnly,
    
    157 157
                 cookieBannerHandlingGlobalRules = context.settings().shouldEnableCookieBannerGlobalRules,
    
    158 158
                 cookieBannerHandlingGlobalRulesSubFrames = context.settings().shouldEnableCookieBannerGlobalRulesSubFrame,
    
    159
    -            emailTrackerBlockingPrivateBrowsing = true,
    
    159
    +            emailTrackerBlockingPrivateBrowsing = false,
    
    160 160
                 torSecurityLevel = context.settings().torSecurityLevel().intRepresentation,
    
    161 161
                 spoofEnglish = context.settings().spoofEnglish,
    
    162 162
             )