Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Learn More

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

  • 3 odpowiedzi
  • 1 osoba ma ten problem
  • 6 wyświetleń
  • Ostatnia odpowiedź od 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.

Wybrane rozwiązanie

user_pref("signon.rememberSignons", false);

Przeczytaj tę odpowiedź w całym kontekście 👍 0

Wszystkie odpowiedzi (3)

more options

Wybrane rozwiązanie

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);

Zmodyfikowany przez slesadmin99 w dniu

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.