03.27.07

How to open http links in your emails with Firefox

Posted in Linux at 00:39 by Arkham

If you want your Thunderbird open http links in Firefox and not with Epiphany or Konqueror do:

  • Go to your ~/.mozilla-thunderbird/ folder
  • Go to your profile directory (usually it has a random generated name like 7s37jl21.default)
  • Check if a prefs.js file exists in that folder
  • Create a new user.js file; if it does exist skip this step
  • Open it with your preferred editor (like vi, emacs, nano, kate, gedit …)
  • Type in the following line:
    user_pref("network.protocol-handler.app.http","/usr/bin/firefox");
  • Save & exit.
  • Restart Thunderbird.
That’s all :)

03.26.07

How to open mailto links with Thunderbird

Posted in Linux at 01:25 by Arkham

If your Firefox won’t open mailto links with Thunderbird, follow this simple tutorial:

  • Go to your ~/.mozilla/firefox folder
  • Go to your profile directory (usually it has a random generated name like aev2b7wd.default)
  • Check if a prefs.js file exists in that folder
  • Create a new user.js file; if it does exist skip this step
  • Open it with your preferred editor (like vi, emacs, nano, kate, gedit …)
  • Type in the following line:
    user_pref("network.protocol-handler.app.mailto", "/usr/bin/mozilla-thunderbird");
  • Save & exit.
  • Restart Firefox.

Send me a cookie here.