I just made another commit that will print more information. The account key (which can be used to track down the account) as well as the email address of the sender associated with the account will be printed. You should enable the "dump"-function by typing this line in the error console (found under the tools menu):
Components.classes ['@
mozilla.org/preferences;1′].getService
(Components.interfaces.nsIPref).SetBoolPref
('browser.dom.window.dump.enabled', true);
It's one line. After doing this, start Thunderbird from a terminal. You should see some extended information printed which hopefully will help you determine which account(s) is the bad one. Hopefully you'll be able to determine the account based on the email address too. Some accounts (like the RSS implementation) are not associated with an email address and will we displayed as "Unknown". If this is the case then you'll have to do some manual investigation.
The line printed starts with the "account key", which is the word "account" followed by a number (e.g. "account2 ..."). Write this down or remember it. Now you need to open the "
prefs.js" file, which is the primary configuration file used by Thunderbird for one profile. Thunderbird usually store its profile directories in ~/.thunderbird or ~/.mozilla-thunderbird. A random named directory can be found in one of these directories and that's the directory in which you will find the "
prefs.js" file. Just open it and browse for a line looking like this:
user_pref("mail.account.account2.identities", "id1");
Where "account2" in the middle is the account key mentioned earlier. The important thing you will need from here is the "id1" value (the number in the id string will most likely be something else in your set-up). It's the identity connected with the account. The identity is basically the sender information, like your name, email address, signature and things like that. Once you have the id string, you should now look for other strings in the same file beginning with:
user_pref("mail.identity.id2...
All these lines adds metadata to the identity. I think it will be pretty easy from here to figure out which account is causing the problems. Let me know if you have any problems.
Thanks!
Pierre Östlund