#!/bin/bash
#
#help
# Syntax:   MASetProductionDB
# Function: Set mailarchive.conf for the 'ma' database in the
#           installed copy of MailArchive.jar.
#           This must be run in the directory containing the 
#           complete set of jar files.
# Options:  none
#end

if [ "$1" == '-?' ]
then
	script_help MASetProductionDB
	exit 1
fi

runSetConfig MailArchive.jar\
             -n=//zoogz/marchive -u=marchive -a=marchive@gregorie.org \
             -e=martin@gregorie.org -s=zoogz \
             -q=marchive -r=nzl128 
exit


