contrib/plan9/9mail
author Gregory Szorc <gregory.szorc@gmail.com>
Fri, 25 Jan 2019 15:09:08 -0800
changeset 41401 4d86bdef3371
parent 19613 4bfd3c7160d9
permissions -rw-r--r--
tests: add optional setsockopt() output on Python 3 Tests still don't pass. But this gets us a little closer. Differential Revision: https://phab.mercurial-scm.org/D5699

#!/bin/rc
# 9mail - Mercurial email wrapper for upas/marshal

fn usage {
	echo >[1=2] usage: mercurial/9mail -f from to [cc]
	exit usage
}

from=()
cc=()
to=()

switch($1){
case -f
	from=$2
case *
	usage
}

to=($3)
if(~ $#* 4)
	cc=(-C $4)

upasname=$from
upas/marshal $cc $to