在 Thunderbird 中创建包含主机名和用户名的帐户列表
我正在开发一个附加组件,需要创建带有主机名和用户名的帐户列表。我可以使用 nsIMsgAccountManager 来做到这一点,但是当我使用手动设置创建新帐户时,主机名会为我提供默认的 imap 服务器名称,即 imap.googlemail.com
即使我已将其更改为 192.168.0.25
。理想情况下,我应该将主机名设置为 192.168.0.25
,但它给了我 imap.googlemail.com
。这是我使用的代码:
var originalAccounts = PrefValue("mail.accountmanager.accounts");
var allServers = accountManager.allServers;
var accounts = originalAccounts.split(",");
var flagFirstItemIsSelected=false;
for (var i = 0; i < accounts.length; ++i) {
for (var ii=0; ii < allServers.Count(); ii++) {
var currentServer = allServers.GetElementAt(ii).QueryInterface(Components.interfaces.nsIMsgIncomingServer);
var type = currentServer.type;
alert(accounts[i]);
if ( accounts[i] == accountManager.FindAccountForServer(currentServer).key) {
// if (type == "none" || type == "pop3" || type == "imap" || type == "rss") {
if(type != "none")
{
if((currentServer.username.toLowerCase().search("Yahoo".toLowerCase()))==-1&&(currentServer.username.toLowerCase().search("Gmail".toLowerCase()))==-1&&(currentServer.username.toLowerCase().search("Rediffmail".toLowerCase()))==-1)
{
var theListitem = accountList.appendItem("[" + type + "] - " + currentServer.prettyName, accounts[i]);
if(flagFirstItemIsSelected==false)
{
//accountList.selectItem( theListitem );
flagFirstItemIsSelected=true;
}
theListitem.setAttribute("class", "folderMenuItem listitem-iconic")
theListitem.setAttribute("ServerType",type);
theListitem.setAttribute("IsServer",true);
theListitem.setAttribute("IsSecure",currentServer.isSecure);
theListitem.setAttribute("onclick","listClicked()");
}
}
}
}
}
请任何人告诉我哪里错了。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要直接使用
mail.accountmanager.accounts
首选项,而是使用nsIMsgAccountService.accounts
(nsISupportsArray 实例)。实际上有一个关于如何迭代所有帐户的代码示例。您应该查看的属性是 nsIMsgAccount.incomingServer ,它是一个 nsIMsgIncomingServer 实例并具有所有必要的信息。您可能需要属性realHostName
和realUsername
:Don't use
mail.accountmanager.accounts
preference directly, usensIMsgAccountService.accounts
instead (nsISupportsArray instance). There is actually a code example on how one would iterate over all accounts. The property you should look at isnsIMsgAccount.incomingServer
which is an nsIMsgIncomingServer instance and has all the necessary information. You probably want the propertiesrealHostName
andrealUsername
: