i am trying to add a bulk list to my server and using this script i get
the runtime error: ( ezmlm-sub: fatal: dir and dot must start with slash
), does anyone know what this means? my script is below. thanks
christopher m downs
#!/bin/sh
## this is to use ezmlm-sub function
## to add a list of e-mail users to
## a particular list.
# <----------------------------------
## example :ListLoc=/var/qmail/alias/lists/listname
$ListLoc=/var/qmail/alias/lists/test6
InputFile=list.txt
##
# <----------------------------------
## pull names from list using @
for name in $(cat $InputFile)
do
echo "Subscribing $name to $ListLoc"
## there is a comment here so i know the execution is out of play.
#ezmlm-sub $listLoc $name
done
## <---------------------------------
# End of File