aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/upas/filterkit/pipefrom.sample
blob: 616bc683e1dcdb91110a041382f0613db63484c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/rc

rfork e
TMP=/tmp/myupassend.$pid

# collect upas/send options
options=()
while (! ~ $#* 0 && ~ $1 -*) {
	options=($options $1);
	shift
}

# collect addresses and add them to my patterns
dests=()
while (! ~ $#* 0) {
	dests=($dests $1);
	shift
}
echo $dests > $TMP
upas/list add /mail/box/$user/_pattern $TMP >[2] /dev/null
rm $TMP

# send mail
upas/send $options $dests