Wednesday, February 14, 2007

Browser settings in Linux-Thunderbird

If you are using linux-thunderbird on FreeBSD (for Flash support for instance), you have probably noticed that thunderbird does not open a web browser when you click on a URL. This may be annoying when you are reading mails containing Web addresses. It is more annoying when you want to add new extensions and/or themes and/or dictionaries.

The simplest way to have support for web browser in linux-thunderbird is the following:
Copy the following three lines in you "user.js" file (in your Thunderbird profile directory):
user_pref("network.protocol-handler.app.http", "/usr/local/bin/firefox");
user_pref("network.protocol-handler.app.https", "/usr/local/bin/firefox");
user_pref("network.protocol-handler.app.ftp", "/usr/local/bin/firefox");
Thunderbird should now open Firefox when you click on a Web link within Thunderbird.

technorati tags:, , , ,

2 comments:

asdf said...

Thanks for the post. Not sure why they wouldn't add this to the preferences dialog...

Unknown said...

Excellent! It's great editing files that say "please don't edit this file"! And it works :)