#!/bin/sh
# Mail tool launcher.
# This script should run your preferred mail composer to send a mail
# to address specified as first argument.
#
# Address is the first and the only argument passed to this script.
ADDRESS=$1

# Redefine $MAILCMD below to your favourite mailer, or uncomment one
# that suits your preferences.

MAILCMD="xterm -T \"mailx - Stack Trace\" -e mailx -s \"Stack trace\" $ADDRESS"
#MAILCMD="dtmail -c -T $ADDRESS"
#MAILCMD="hotjava mailto:$ADDRESS"
#MAILCMD="netscape -remote \"openURL(mailto:$ADDRESS)\" || netscape mailto:$ADDRESS"

eval $MAILCMD
