#!/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 -e elm -s \"Stack trace\" $ADDRESS" #MAILCMD="xterm -e mutt -s \"Stack trace\" $ADDRESS" #MAILCMD="netscape -remote \"openURL(mailto:$ADDRESS)\" || netscape mailto:$ADDRESS" eval $MAILCMD