How do I make Thunderbird open links in Chromium?
This is what I found working for me: You will need to access the "config editor" in Thunderbird itself.
Open Thunderbird. In 24.6.0, the menu can be accessed on the right hand side of the top menu bar (next to the search bar and is represented by three horizontal lines).
Click Edit > then click Preferences >, a new window will open. You will need to select the Advanced tab, at the bottom of that tab Open the Config Editor.
Then, search for both network.protocol-handler.warn-external.http
and
network.protocol-handler.warn-external.https
.
These two are most likely to have a current value of false
. Change the value to true
(do this by simply right clicking on them) and the next time you try to open a link from some e-mail it'll ask you which browser to use. Chromium isn't likely to be shown in the list of choices, so use the navigate button. You can find Chromium at /usr/bin/chromium-browser
.
If using google chrome as your browser of choice you may want to make it /usr/bin/google-chrome
or /usr/bin/google-chrome-stable
If Thunderbird doesn't ask you which browser to use when you click on a link after doing this, you can try deleting mimeTypes.rdf file in your profile folder to reset it. The profile folder is typically found as ~/.thunderbird/xxxxxxxx.default/
Original text by Htbaa
In Thunderbird 11.0.1, it is simple, yet not intuitive:
Go to Preferences (Menu Edit → Preferences).
Click on the Attachments tab.
In the Content Type and Action section set HTTPS, HTTP, and FTP to Use google-chrome (or other desired browser).
That worked for me after trying numerous things in terminal that did not work.
Edit -> Preferences -> Advanced -> General -> Config Editor...
Right click -> New -> String
Enter the preference name:
network.protocol-handler.app.http
Value:
/usr/bin/x-www-browser
Setting Default Browser
In the command line, type
sudo update-alternatives --config x-www-browser && sudo update-alternatives --config gnome-www-browser