当点击mailto:链接时,如何用给定的配置文件调用雷鸟?

问题描述 投票:0回答:1

我总是用-p选项(添加在图标命令行中)来打开我的thunderbird,以指定我想使用的配置文件的路径,但如果我点击mailto:链接,默认的thunderbird配置文件被使用,而不是我的自定义配置文件。

mailto thunderbird
1个回答
0
投票

我发现这个工作,用regedit更改

Computer\HKEY_CLASSES_ROOT\Thunderbird.Url.mailto\shell\open\command

默认值来自

"C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe" -osint -compose "%1"

"C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe" -profile "<path_to_our_profile>" -compose "%1"

也许改变也以同样的方式:

Computer\HKEY_CLASSES_ROOT\mailto\shell\open\command

显然,-osint和-profile是不兼容的。

© www.soinside.com 2019 - 2024. All rights reserved.