> -----Original Message----- > From: fedora-list-bounces@xxxxxxxxxx > [mailto:fedora-list-bounces@xxxxxxxxxx] On Behalf Of Polashek, Matthew > Sent: Wednesday, April 28, 2004 8:53 AM > To: 'For users of Fedora Core releases' > Subject: RE: Firefox/thunderbird question > > I have installed the Mozex extension in firefox but there is > some kind of command script I need to enter into the > "mailto:" box configure it to work with thunderbird. Does > anyone have this figured out? > > Matthew Polashek > > > > > ---------- > > From: -=Brian Truter=- > > Reply To: For users of Fedora Core releases > > Sent: Wednesday, April 28, 2004 9:49 AM > > To: 'For users of Fedora Core releases' > > Subject: RE: Firefox/thunderbird question > > > > > -----Original Message----- > > > From: fedora-list-bounces@xxxxxxxxxx > > > [mailto:fedora-list-bounces@xxxxxxxxxx] On Behalf Of Polashek, > > > Matthew > > > Sent: Wednesday, April 28, 2004 8:22 AM > > > To: 'fedora-list@xxxxxxxxxx' > > > Subject: Firefox/thunderbird question > > > > > > Hi! > > > I am using firefox and thunderbird on my FC1 and my OSX > machines. > > > In OSX I can click on a link in thunderbird and have it open in > > > firefox and in firefox I can click on an e-mail address > (though it > > > doesn't really work > > > right) and it call thunderbird. How can I make this happen on my > > > FC1 box? > > > > > > Matthew Polashek > > > Associate Editor, Silver Burdett Ginn - Music Scott > Foresman/Pearson > > > Education > > > 299 Jefferson Road > > > Parsippany, NJ 07054-0480 > > > office: 973.739.8709 > > > fax: 973.739.8098 > > > Matthew.Polashek@xxxxxxxxxxxxxxxxx > > > > > > > > > > > > ************************************************************** > > > ************** > > > This email may contain confidential material. > > > If you were not an intended recipient, please notify the > sender and > > > delete all copies. > > > We may monitor email to and from our network. > > > > > > ************************************************************** > > > ************** > > > > > > > > > > > > -- > > > fedora-list mailing list > > > fedora-list@xxxxxxxxxx > > > To unsubscribe: http://www.redhat.com/mailman/listinfo/fedora-list > > > > > > > > > Use the MozEX extention > > > > http://extensionroom.mozdev.org/more-info/mozex > > > > > > -- > > fedora-list mailing list > > fedora-list@xxxxxxxxxx > > To unsubscribe: http://www.redhat.com/mailman/listinfo/fedora-list > > > > > > > > > ************************************************************** > ************** > This email may contain confidential material. > If you were not an intended recipient, > please notify the sender and delete all copies. > We may monitor email to and from our network. > > ************************************************************** > ************** > > > > -- > fedora-list mailing list > fedora-list@xxxxxxxxxx > To unsubscribe: http://www.redhat.com/mailman/listinfo/fedora-list > The instructions on how to make the script are right on the mozex website. It can be copied and pasted. Just make a batch called thunderbird-mailto.sh and call it with mozex. #!/bin/sh # #script author: asterix #http://forums.mozillazine.org/viewtopic.php?p=136157#136157 export MOZILLA_FIVE_HOME=/opt/thunderbird if [ $(ps aux | grep thunderbird | wc -l) -gt 4 ]; then # thunderbird is running (thunderbird est lance) $MOZILLA_FIVE_HOME/thunderbird -remote "mailto($1?subject=$2)" else # thunderbird is not running (thunderbird n'est pas lance) $MOZILLA_FIVE_HOME/thunderbird -P default -compose mailto:$1?subject=$2; fi