|
|
(15 intermediate revisions by 7 users not shown) |
Line 1: |
Line 1: |
− | {{i18n_links_start}}
| + | #REDIRECT [[Thunderbird#Opening links in Thunderbird with Firefox]] |
− | {{i18n_entry|English|Get Thunderbird to Export URLS to Firefox}}
| |
− | {{i18n_entry|Français|Ouvrir les URLS de Thunderbird avec Firefox}}
| |
− | {{i18n_links_end}}
| |
− | | |
− | | |
− | [[Category:Internet and Email (English)]] | |
− | [[Category:HOWTOs (English)]]
| |
− | = Two Ways of opening links in Thunderbird with Firefox =
| |
− | There's an easy way to get Thunderbird sort of working with Firefox right out of the box with Arch.
| |
− | ==First way==
| |
− | Go to your hidden thunderbird directory in your home directory.
| |
− | <pre>
| |
− | cd /home/YOURUSERNAME/.thunderbird
| |
− | </pre>
| |
− | | |
− | Or use a graphical filebrowser like Konqueror or Nautilus. Make sure to enable 'view hidden files and folders.'
| |
− | | |
− | You'll see a folder that looks something like this
| |
− | <pre>
| |
− | ocj1fmh9.default
| |
− | </pre>
| |
− | | |
− | Go into that folder and find the file named prefs.js and open it with your text editor of choice.
| |
− | | |
− | '''''IMPORTANT - Make absolute sure that Thunderbird is CLOSED. Otherwise this change to the text file will have no effect.'''''
| |
− | | |
− | Add to the bottom of the prefs.js file the following lines and save the file (alternatively, you can add the lines to a new file called user.js).
| |
− | | |
− | <pre>
| |
− | user_pref("network.protocol-handler.app.http", "/usr/bin/firefox");
| |
− | user_pref("network.protocol-handler.app.https", "/usr/bin/firefox");
| |
− | </pre>
| |
− | | |
− | Note: As far as the standard firefox package from the extra repository is concerned, the binary path is now /usr/bin/firefox. To check the path of your firefox binary manually, use the command:
| |
− | | |
− | <pre>
| |
− | which firefox
| |
− | </pre>
| |
− | | |
− | ==Second way - does not need to restart Thunderbird==
| |
− | You can also add those config parameters directly in Thunderbird when it is running. Click ''Edit/Preferences/Advanced/General/Config Editor''. Right click in the list of parameters, select ''New'' and ''String'' in the menu.
| |
− | | |
− | A box appears, asking you for the preference name. Put :
| |
− | <pre>
| |
− | network.protocol-handler.app.http
| |
− | </pre>
| |
− | Click OK, the box then asks you for the value : set it to :
| |
− | <pre>
| |
− | /usr/bin/firefox
| |
− | </pre>
| |
− | | |
− | Do it again for the preference named ''network.protocol-handler.app.https'' .
| |
− | | |
− | You can now click on URL directly to launch them into Firefox !
| |
− | | |
− | ==Third way - Set up gconf==
| |
− | If you already haven't, install gconf-editor:
| |
− | $> pacman -S gconf-editor
| |
− | Run gconf-editor and edit the /desktop/gnome/url-handlers/http(s) keys to your liking.
| |
− | | |
− | If you use Xfce4, you can type in "xfbrowser4 %s", which will use the browser set up in "Preferred Applications",
| |
− | | |
− | | |
− | ==Setting Firefox to open links in new tabs/new windows==
| |
− | You can change whether links are opened in new tabs or in new windows by opening up /usr/bin/mozilla-firefox in a text editor.
| |
− | | |
− | There are two lines near the top that say:
| |
− | <pre>
| |
− | OPEN_IN=new-window
| |
− | #OPEN_IN=new-tab
| |
− | </pre>
| |
− | | |
− | This setup will open URL's in a new window. Simply comment the first line and uncomment the second line to open URL's in a new tab!
| |
− | | |
− | Another way to do that is to select the right radiobutton in ''Edit/Preferences/Tabs'' in your Firefox browser menu.
| |