Skip to content

Instantly share code, notes, and snippets.

@ricard33
Created April 8, 2015 10:25
Show Gist options
  • Save ricard33/90cd77a19022771d194d to your computer and use it in GitHub Desktop.
Save ricard33/90cd77a19022771d194d to your computer and use it in GitHub Desktop.
Disable accounts on Thundebird
An elegant way to manually disable (thus totally hide) an account is to edit prefs.js (make sure TB had been shut down before editing). Search for "mail.accountmanager.accounts" and edit the line like this, e.g. assuming that "account6" is the one to be disabled:
Before edit (account enabled):
user_pref("mail.accountmanager.accounts", "account1,account5,account3,account2,account4,account7,account6");
After edit (account disabled):
user_pref("mail.accountmanager.accounts", "account1,account5,account3,account2,account4,account7");
This will disable the account and completely hide it in the user interface, but preserve all account settings, servers and identities associated with the account. To reactivate it just add the account name back to the list. When you restart TB, the account and all its settings and contents will magically reappear.
Edit: Yes, you can also simply use about:config.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment