From e505ddbf0242aec1017a565a74ff9ff5aa458fe5 Mon Sep 17 00:00:00 2001 From: fxbrit Date: Sat, 9 Jul 2022 15:21:45 +0200 Subject: [PATCH] deprecate cookie lifetime policy, close #199 --- librewolf.cfg | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/librewolf.cfg b/librewolf.cfg index f2452a0..90d340a 100755 --- a/librewolf.cfg +++ b/librewolf.cfg @@ -45,12 +45,10 @@ pref("browser.contentblocking.category", "strict"); defaultPref("network.cookie.cookieBehavior", 5); // enforce dFPI defaultPref("privacy.partition.serviceWorkers", true); // isolate service workers -/** [SECTION] SANITIZING */ -defaultPref("network.cookie.lifetimePolicy", 2); // keep cookies until end of the session, then clear -/** - * this way of sanitizing cookies would override the exceptions set by the users and just delete everything, - * we disable it but cookies and site data are still cleared per session unless exceptions are set. - * all the cleaning prefs true by default except for siteSetting and offlineApps, which is what we want. +/** [SECTION] SANITIZING + * all the cleaning prefs true by default except for siteSetting and offlineApps, + * which is what we want. users should set manual exceptions in the UI if there + * are cookies they want to keep. */ defaultPref("privacy.clearOnShutdown.offlineApps", true); defaultPref("privacy.sanitize.sanitizeOnShutdown", true);