Skip to content

Commit

Permalink
Resets signon.rememberSignons preference to let the user choose
Browse files Browse the repository at this point in the history
By disabling this preference, we prevented Thunderbird from even asking
whether passwords of new setup mail accounts should be saved or not.
This could be pretty confusing and not handy for daily usage.

Users with _specific_ needs can still unconditionally disable passwords
saving by uncommenting `5003`.

> closes #30

Co-Authored-By: atomGit <[email protected]>
  • Loading branch information
Samuel FORESTIER and atomGit committed Nov 27, 2022
1 parent cc6cab6 commit 4f5cde4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -1038,8 +1038,8 @@ user_pref("_user.js.parrot", "5000 syntax error: the parrot's taken 'is last bow
user_pref("browser.cache.memory.enable", false);
user_pref("browser.cache.memory.capacity", 0);
/* 5003: disable saving passwords
* [NOTE] This does not clear any passwords already saved ***/
user_pref("signon.rememberSignons", false);
* [NOTE] This does not clear any already saved passwords and will make TB ask for it every time ***/
// user_pref("signon.rememberSignons", false);
/* 5004: disable permissions manager from reading or writing to disk [FF41+] [RESTART]
* [SETUP-CHROME] This means any permission changes (cookie or mail remote content) are session only
* [1] https://bugzilla.mozilla.org/967812 ***/
Expand Down

0 comments on commit 4f5cde4

Please sign in to comment.