*OOPS* see 'oops' below.
*OOPS*
no. my bad.
my chemo brain forgot.
"prefs.js" file _does_ need to be edited.
in "prefs.js", *both* _email_agent_ and _news_service_ accounts
are defined by a line starting with;
user_pref("mail.server.serverX.
and closed with;
);
where 'X' is a number that relates to order they were setup.
each account will have several lines describing the account.
email accounts and news services can be disabled by inserting
'comment' markers. start marker is "/*", close is "*/".
so to disable an account is done as;
<snipped>
user_pref("mail.server.server1.whiteListAbURI", <snipped> );
/*
user_pref("mail.server.server2.ageLimit", 1);
user_pref("mail.server.server2.applyToFlaggedMessages", false);
user_pref("mail.server.server2.cleanupBodies", false);
user_pref("mail.server.server2.daysToKeepBodies", 1);
user_pref("mail.server.server2.daysToKeepHdrs", 1);
<snipped>
user_pref("mail.server.server2.userName", "nonya");
user_pref("mail.server.server2.whiteListAbURI", <snipped> );
*/
user_pref("mail.server.server3.ageLimit", 30);
user_pref("mail.server.server3.applyToFlaggedMessages", false);
user_pref("mail.server.server3.charset", "UTF-8");
user_pref("mail.server.server3.check_new_mail", true);
<snipped>
user_pref("mail.server.server3.directory-rel",
"[ProfD]News/mozilla.support.thunderbird");
user_pref("mail.server.server3.downloadByDate", false);
user_pref("mail.server.server3.downloadUnreadOnly", false);
user_pref("mail.server.server3.hostname", "
news.mozilla.org");
user_pref("mail.server.server3.keepUnreadOnly", false);
<snipped>
user_pref("mail.server.server3.useServerFilter", true);
user_pref("mail.server.server3.valid", false);
user_pref("mail.server.server3.whiteListAbURI", <snipped> );
user_pref("mail.server.server4.ageLimit", 1);
<snipped>
above will disable account #2.
other way, requires going thru setup routine again is to open
account manager. highlight account, then click on "Account Action"
at bottom of window and select "Remove Account".
to reactivate account, open account manager, click on
"Account Action" at bottom of window and select
"Add (type) Account", and supply info.
"other ways" is easy to remove an account, involved in restoring.
"editing prefs.js" is slightly involved in disabling, but it is
quick and easy to restore. no reentry of info.
if you go with editing of prefs.js and you use an editor that
respects file formatting, you will see file in various colors.
when an accounted is "commented" all lines of "comment" will
become to gray.
to re-enable an account, remove start "/*" and end "/*" marks.
as always, CYOA. [Cover Your Own Ass]
make a backup copy of "prefs.js" before each time you edit.