Penguin
Diff: MozillaThunderbirdNotes
EditPageHistoryDiffInfoLikePages

Differences between version 14 and predecessor to the previous major change of MozillaThunderbirdNotes.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 14 Last edited on Wednesday, August 18, 2004 11:23:14 pm by MarcVinyesRaso Revert
Older page: version 9 Last edited on Saturday, June 12, 2004 6:01:00 pm by DrewBroadley Revert
@@ -15,8 +15,38 @@
 and restarted thunderbird. 
  
 ''Try putting it in user.js not prefs.js as Thunderbird will just over-write this... -- ReneBartosh''%%% 
 + ''Close Thunderbird before you edit, and you won't have that problem -- DrewBroadley'' 
+  
+''With Firefox 0.9, since they changed the way URL handling goes, you'll need to add -a firefox to your firefox-helper.sh script.''  
+  
+  
+ '' ${FIREBIRD_PATH}/firefox -a firefox -remote "openURL($@,new-tab)"''  
+''instead of''  
+ '' ${FIREBIRD_PATH}/firefox -remote "openURL($@ ,new-tab)"''  
+''--YacinNadji (MarC corrected the space left bewteen $@ and new-tab)''  
+  
+''I have an alternative:''  
+  
+''${FIREFOX_PATH}/mozilla-xremote-client -a firefox "openURL($@,new-tab)"&''  
+  
+''!! VERY IMPORTANT (YacinNadji didn't say it and I had some trouble with it...): Note that there should be no space between the the comma and the command after the url or you get a "Error: Failed to send command: 509 internal error".''  
+  
+''--MarC''  
+  
+----  
+  
+By the way, I've developped an evolution to the firefox-helper.sh script.  
+  
+It works with KDE, gnome, graphical console, opens new windows or new tab when necessary, etc... (solves zcat(1) problem, below this)  
+  
+download it at: http://www.iespana.es/infogeneral_es/contrib/mozz  
+  
+don't forget to modify variable FIREFOX_PATH to put your firefox path  
+  
+(and if you use firefox under 0.9 you may have change the call of firefox and uncomment one line)  
+  
+enjoy! - MarC  
  
 ---- 
  
 I've just spend the last couple of hours trying to figure out a fairly similar problem! Under KDE3, Thunderbird opens URL links with Konquerer (the default browser for opening a URL), and I wanted to use Firefox. So I figured the easiest way would be somewhere in kde's config, changing the default browser that it uses to open URL's.. 
@@ -41,4 +71,6 @@
  
  user_pref("network.protocol-handler.app.ftp", "/location/to/ftpprogram"); 
  
 - [DrewBroadley] 
+  
+----