Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

How do I disable html form login credentials from caching/saving?

  • 3 réponses
  • 1 a ce problème
  • 6 vues
  • Dernière réponse par cor-el

more options

I have included multiple modifications to the user.js file (SLES11, firefox-3.6.16-0.2.1) to acheive most of my requirements, but I cannot find the about:config setting that prevents usernames (and passwords depending on the setting chosen) from saving.

I have been using about:config to confirm the setting in pref.js then I change the setting back to the default in about:config, and add the appropriate config line to user.js rather than have it set in pref.js

The information I found online directs me to Edit --> Preferences, but this configuration needs to be written for use in a base image to be distributed.

I have included multiple modifications to the user.js file (SLES11, firefox-3.6.16-0.2.1) to acheive most of my requirements, but I cannot find the about:config setting that prevents usernames (and passwords depending on the setting chosen) from saving. I have been using about:config to confirm the setting in pref.js then I change the setting back to the default in about:config, and add the appropriate config line to user.js rather than have it set in pref.js The information I found online directs me to Edit --> Preferences, but this configuration needs to be written for use in a base image to be distributed.

Solution choisie

user_pref("signon.rememberSignons", false);

Lire cette réponse dans son contexte 👍 0

Toutes les réponses (3)

more options

Solution choisie

user_pref("signon.rememberSignons", false);

more options

Thanks, it looks like I need that and a couple more.

This solved my issue:

pref("signon.rememberSignons",false);

pref("signon.prefillForms",false);

pref("signon.autofillForms",false);

Modifié le par slesadmin99

more options

You're welcome.

The pref signon.prefillForms was used in Firefox 2.
Firefox 3+ uses signon.autofillForms

Firefox 4+ also has security.password_lifetime for the master password.