contrib/plan9/9mail
author Gregory Szorc <gregory.szorc@gmail.com>
Fri, 23 Feb 2018 16:03:27 -0800
changeset 36561 1138e5c0fbc9
parent 19613 4bfd3c7160d9
permissions -rw-r--r--
tests: add wire protocol tests for pushkey Let's get the wire format of some pushkey requests in test-ssh-proto.t. Differential Revision: https://phab.mercurial-scm.org/D2466

#!/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