HI, I have used this script for quite awhile now,suddenly it stops,I
cannot link a html in thunderbird to firefox.
#!/bin/sh
export MOZILLA_FIVE_HOME="/usr/lib/firefox-1.07"
url="$1"
if [ "x$url" = "x" ]; then
url="about:blank"
fi
if $MOZILLA_FIVE_HOME/mozilla-xremote-client openURL\("$url,new-tab"\); then
exit 0
fi
exec $MOZILLA_FIVE_HOME/firefox "$url"
#
# Place script in thunderbird
#
#Add to thunderbird pref.js
#
# user_pref("network.protocol-handler.app.ftp",
"/usr/lib/thunderbird-1.0.7/openlink.sh");
# Change ".app.ftp" to "http","https" on new lines for access.
Has anything changed to cause this or have I done something wrong.
david