Revision 6 as of 2011-03-10 09:41:44

Clear message

Problem

When using Thunderbird 3.1.7 i can click on a Link which opens in GNOME Webbrowser. How can i make sure the Link opens into Firefox instead?

Solution

Regardless of the Desktop you use (KDE, GNOME, etc.) you need to change some Settings in the GConf repository with the GNOME configuration tool gconftool-2. The reason is that Mozilla uses GTK+ which in turn is linked to GNOME.

gconftool-2 -g /desktop/gnome/url-handlers/http/command
gnome-www-browser "%s"

gconftool-2 -g /desktop/gnome/url-handlers/https/command
gnome-www-browser "%s"

gconftool-2 -g /desktop/gnome/url-handlers/http/enabled
true

gconftool-2 -g /desktop/gnome/url-handlers/https/enabled
true

gconftool-2 -s /desktop/gnome/url-handlers/http/command '/usr/sepp/bin/firefox "%s"' --type string
gconftool-2 -s /desktop/gnome/url-handlers/https/command '/usr/sepp/bin/firefox "%s"' --type string
gconftool-2 -s /desktop/gnome/url-handlers/http/enabled 'true' --type bool
gconftool-2 -s /desktop/gnome/url-handlers/https/enabled 'true' --type bool

gconftool-2 -g /desktop/gnome/url-handlers/http/command
/usr/sepp/bin/firefox "%s"

gconftool-2 -g /desktop/gnome/url-handlers/https/command
/usr/sepp/bin/firefox "%s"

gconftool-2 -g /desktop/gnome/url-handlers/http/enabled
true

gconftool-2 -g /desktop/gnome/url-handlers/https/enabled
true