#!/bin/sh
# script author: asterix
# http://forums.mozillazine.org/viewtopic.php?p=146623&highlight=mozex#146623
#
# then altered by <doj@cubic.org>

export MOZILLA_FIVE_HOME=/usr/local/thunderbird

if [ $# -ge 1 ] ; then

  M=${1##mailto:} # remove leading mailto:

  if [ $(ps aux | grep thunderbird | wc -l) -gt 4 ]
  then $MOZILLA_FIVE_HOME/thunderbird -remote "mailto($M?subject=$2)"
  else $MOZILLA_FIVE_HOME/thunderbird -P default -compose "mailto:$M?subject=$2"
  fi

else
  exec $MOZILLA_FIVE_HOME/thunderbird
fi
