How do I disable html form login credentials from caching/saving?
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.
Additional System Details
Installed Plug-ins
- r-kiosk
Application
- User Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.9) Gecko/20100317 SUSE/3.5.9-0.1.1 Firefox/3.5.9
More Information
I have tried to modify:
--signon.autofillForms
--signon.prefillForms
to no avail.
Chosen Solution
user_pref("signon.rememberSignons", false);
Question owner
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);
Modified by slesadmin99
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.
