正如所指出的这个答案,Thunderbird(具有多个邮件帐户)始终选择当前选定打开新电子邮件的“撰写”窗口时,请先登录帐户。
对于我的一个帐户,我想默认使用来自不同的帐户。
有没有办法将另一个帐户的身份设置为默认身份 — 而无需在我想要使用它的地方手动重新创建它?
答案1
Thunderbird 独立于帐户存储身份,仅维护它们之间的关系列表。
通过手动编辑设置文件,您可以链接相同的身份共享到多个帐户;即使后续身份变更也会反映在所有帐户上。
- 退出 Thunderbird。
- 打开你的
prefs.js
配置文件(可以在您的 Thunderbird 配置文件目录中找到)在文本编辑器中。 - 搜索账户配置打开 — 名为
mail.account.account1.server
、mail.account.account1.identities
等。
您可能需要查看服务器(mail.server.server1.*
、 等)和身份(mail.identity.id1.*
)定义以找到您想要链接的账户和身份。 编辑
mail.account.accountX.identities
以添加您想要在该帐户上使用的身份。列表中的第一个身份将用作该帐户的默认身份。
结果可能如下所示:user_pref("mail.account.account1.identities", "id4,id1,id2"); user_pref("mail.account.account1.server", "server1"); user_pref("mail.account.account4.identities", "id4,id3,id1,id2"); user_pref("mail.account.account4.server", "server4");
- 身份“id4”、“id1”和“id2”现在将同时显示在“account1”和“account4”上。