Iceweasel.js

Bonsoir,

Je planche pour configurer mon fichier de préférences iceweasel; sous firefox aucun problème, je configure comme je veux ; mais iceweasel ne semble pas prendre mes préférences : je joins mon fichier.

[quote]// Fichier verrouillant la page d’accueil et la configuration du proxy
lockPref(“network.proxy.type”, 1); // Configuration manuelle du proxy
// Pour une configuration automatique par url, mettre la valeur de ce paramètre à 2 et définir l’url du fichier PAC
// lockPref(“network.proxy.autoconfig_url”, “url_fichier_PAC”);
lockPref(“network.proxy.http”, “172.16.10.1”); // Adresse du proxy
lockPref(“network.proxy.http_port”, 8080); // Port d’écoute du proxy
lockPref(“network.proxy.share_proxy_settings”, true); // Utiliser le proxy pour tous les protocoles
lockPref(“network.proxy.no_proxies_on”, “127.0.0.1, localhost”); // Pas de proxy pour localhost et 127.0.0.1
lockPref(“browser.startup.homepage”, “https://www.google.fr”); // Page d’accueil
lockPref(“browser.history_expire_days”, 0) ;
lockPref(“signon.rememberSignons”, false) ; // Ne pas enregistrer les mots de passe
lockPref(‘signon.prefillForms’, false); //

// PRIVACY

// settings to clear on shutdown
defaultPref(“privacy.clearOnShutdown.cache”, true);
lockPref(“privacy.clearOnShutdown.cookies”, true); //
defaultPref(‘privacy.clearOnShutdown.downloads’, true);
defaultPref(‘privacy.clearOnShutdown.formdata’, true); //
defaultPref(“privacy.clearOnShutdown.history”, true); //
defaultPref(“privacy.clearOnShutdown.offlineApps”, false);
lockPref(‘privacy.clearOnShutdown.passwords’, true); //
lockPref(‘privacy.clearOnShutdown.sessions’, true); //
defaultPref(‘privacy.clearOnShutdown.siteSettings’, true);

// settings to clear when “Clear Recent History” is selected
defaultPref(‘privacy.cpd.history’, true);
defaultPref(‘privacy.cpd.formdata’, true);
defaultPref(‘privacy.cpd.passwords’, true);
defaultPref(‘privacy.cpd.downloads’, true);
defaultPref(‘privacy.cpd.cookies’, true);
defaultPref(‘privacy.cpd.cache’, true);
defaultPref(‘privacy.cpd.sessions’, true);
defaultPref(‘privacy.cpd.offlineApps’, true);
defaultPref(‘privacy.cpd.siteSettings’, true);

//this runs the “clear recent history” on shutdown basically
//redundant with the block above but hey why not
lockPref(‘privacy.sanitize.sanitizeOnShutdown’, true);
lockPref(“privacy.sanitize.timeSpan”, 0); //remove all info regardless of age

//might as well switch on Do Not Track by default
defaultPref(‘privacy.donottrackheader.enabled’, true);

// NETWORK
// all cookies expire when the session ends (browser closes)
// other options: 0 = cookie’s lifetime as supplied by the server, 1 = user prompt, 2 = session ends
// & 3 = a number of days set by the network.cookie.lifetime.days preference
defaultPref(‘network.cookie.lifetimePolicy’, 2); //

// MISCELLANEOUS
// disable geolocation but users can re-enable if needed
defaultPref(‘geo.enabled’, false);[/quote]