Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

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

  • 3 risposte
  • 1 ha questo problema
  • 6 visualizzazioni
  • Ultima risposta di 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.

Soluzione scelta

user_pref("signon.rememberSignons", false);

Leggere questa risposta nel contesto 👍 0

Tutte le risposte (3)

more options

Soluzione scelta

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

Modificato da slesadmin99 il

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.