1case $CONFIG in
2'')
3	if test -f config.sh; then TOP=.;
4	elif test -f ../config.sh; then TOP=..;
5	elif test -f ../../config.sh; then TOP=../..;
6	elif test -f ../../../config.sh; then TOP=../../..;
7	elif test -f ../../../../config.sh; then TOP=../../../..;
8	else
9		echo "Can't find config.sh."; exit 1
10	fi
11	. $TOP/config.sh
12	;;
13esac
14case "$0" in
15*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
16esac
17echo "Extracting agent/files/help/end (with variable substitutions)"
18$spitshell >/dev/null <<!GROK!THIS!
19# $Id$
20#
21#  Copyright (c) 1990-2006, Raphael Manfredi
22#
23#  You may redistribute only under the terms of the Artistic License,
24#  as specified in the README file that comes with the distribution.
25#  You may reuse parts of this distribution only within the terms of
26#  that same Artistic License; a copy of which may be found at the root
27#  of the source tree for mailagent 3.0.
28#
29# $Log: end.SH,v $
30# Revision 3.0  1993/11/29  13:47:55  ram
31# Baseline for mailagent 3.0 netwide release.
32#
33!GROK!THIS!
34$spitshell >end <<'!NO!SUBS!'
35NAME
36
37	end -- Ends a server request
38
39SYNOPSIS
40
41	end
42
43DESCRIPTION
44
45This pseudo command simply ends the processing of your request. The remaining
46of your message is discarded.
47
48Usually, a server request is also ended when a signature delimiter "--" is
49reached or at the physical end of the message.
50
51EXAMPLE
52
53	... some commands ...
54	end
55	... mail message continues (ignored) ...
56!NO!SUBS!
57chmod 644 end
58