Differences between revisions 8 and 9
Revision 8 as of 2013-05-31 08:39:23
Size: 2059
Editor: maegger
Comment:
Revision 9 as of 2013-10-18 12:36:12
Size: 2550
Editor: maegger
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
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? When using Thunderbird i can click on a Link in an email which opens in the wrong Webbrowser. How can i make sure the Link opens into my desired webrowser instead?
Line 4: Line 4:
Unfortunately there is not the one and only solution for this. It depends on how old your desktop profile is, how old your thunderbird profile is and how many window framworks you have used in the past. So the best thing is to try any of the following solutions in the given order.

== Thunderbird Settings ==
 1. Open yor thunderbird mail client and choose from the menu ({{{Edit -> Preferences -> Attachments}}})\
 1. Choose the '''Incoming''' Tab.
 1.


Problem

When using Thunderbird i can click on a Link in an email which opens in the wrong Webbrowser. How can i make sure the Link opens into my desired webrowser instead?

Solution

Unfortunately there is not the one and only solution for this. It depends on how old your desktop profile is, how old your thunderbird profile is and how many window framworks you have used in the past. So the best thing is to try any of the following solutions in the given order.

Thunderbird Settings

  1. Open yor thunderbird mail client and choose from the menu (Edit -> Preferences -> Attachments)\

  2. Choose the Incoming Tab.

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.

  • Open a Shell as a User.
  • Check the http, https Settings in the GConf Repository. They should either contain the gnome-www-browser (as showed below) or maybe a specific Path to an other Webbrowser (sometimes also a link to some specific firefox version).

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
  • Make sure to replace these settings (even if one contains a specific firefox version) to use the SEPP firefox wrapper.

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
  • Recheck the Settings to make sure they have been set to the SEPP firefox wrapper and that these Settings are used.

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
  • /!\ Even if the settings should be immediately available it is advised to close thunderbird and firefox and then reopen them again.


CategoryMAIL

FAQ/ThunderbirdOpensGNOMEBrowser (last edited 2020-09-15 20:07:03 by gfreudig)