aboutsummaryrefslogtreecommitdiff
path: root/bin/wmail
blob: 721c9487ce2995266b12a5ce1e814d4439e4af05 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

case "x-$MAILER" in
x-|x-browser)
	# start mail in a new window
	web "mailto:$1"
	;;
*)
	9term $MAILER "$1"
	;;
esac