summaryrefslogtreecommitdiff
path: root/regress/ticket/listup.sh
blob: 15bf32f2cc4d83f2c0fc6c65c9b37e2d8d3bf4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# $FML: list_up.sh,v 1.2 2001/06/17 09:00:30 fukachan Exp $
#

tmp=/tmp/$$
pwd=`pwd`

trap "rm -f $tmp" 0 1 3 15

cd ../.. || exit 1;

/usr/local/libexec/fml/fmlticket \
		--params pwd=$PWD \
		-c $pwd/main.cf \
		-R open \
		list /var/spool/ml/elena

exit 0;