# Above should have been added a VER definition
# DEBUG=1
# This program is meant to test ezmlm-idx.
#
# The script will use __TSTDIR and __TSTDIR__err and destroy any files
# therein. Both user name and directory names etc can be configured
# below, but this should only very rarely be necessary.

# must be absolute
EZBIN=`pwd`

# Version of ezmlm-idx for which this test script is designed
OLD_VER='ezmlm-idx-031'		# ezmlm-idx-0.31x

# basedir for test list. It and all files therein are destroyed by
# the script
SUBDIR=__TSTDIR
DIR="$PWD/$SUBDIR"

# part that follows user name of local name of the list
LIST='__tstlist'

# file not within listdir where some error output is stored. If something
# fails, this file may have more info.
ERR="${DIR}__err"

# file that can hold crated test msg to avoid sigpipe
TMP="${DIR}/__tmp"

# file to hold a test qmail-queue
QQTEST="${DIR}/__qqtest"

# file to hold the message output from qmail-queue
QQMSG="${DIR}/__qqmsg"

# file to hold the envelope output from qmail-queue
QQENV="${DIR}/__qqenv"

# file to hold the message headers output from qmail-queue
QQHDR="${DIR}/__qqhdr"

# file to hold the message body output from qmail-queue
QQBODY="${DIR}/__qqbody"

# defaults for SQL version - overridden by command line switches
TABLE='list'
DB='ezmlm'
SQLHOST=''
SQLUSER='eztest'	# -u overrides this

###################### END CONFIRGRABLE ITEMS #########################
