我们有两个 thunderbird 配置文件,我们使用 -no-remote 启动 thunderbird 如下:
thunderbird -no-remote -P Profile1
和
thunderbird -no-remote -P Profile2
不幸的是,这意味着如果我们中的任何一个人点击电子邮件中的链接,并且 Firefox 已经在运行,我们就会收到一条警告消息,告诉我们 Firefox 已经在运行,而不是让它打开该链接。
尽管 thunderbird 是使用 -no-remote 启动的,它是否可以使用 firefox 的远程功能?
(如果有什么不同,这是在 Xubuntu Karmic 上)
答案1
尝试创建这样的脚本...
#!/bin/bash
unset MOZ_NO_REMOTE
/usr/bin/firefox "$@"
然后设置网络.协议处理程序.warn-外部.http为“真”。
然后启动 Thunderbird,单击链接并选择您的脚本。
这对我来说在 RHEL6 上的 Thunderbird 3.1 上有效。如果我打开了多个 Firefox 配置文件,则链接会在我启动的第一个 Firefox 配置文件中打开。
答案2
目前 Firefox 不支持在分叉进程上设置这种继承,尽管 Mozilla 鼓励你提供反馈和建议他们的产品。