#! /bin/sh
#
# This zshell script recreates the FQDN alias map
#
# NB!  If your kernel supports #! but the mechanism fails mysteriously when
# invoking this file, remember the total length of the command's path is
# limited to 30 characters or so.
#
ZCONFIG=/usr/local/etc/zmailer/zmailer.conf

. $ZCONFIG

SOPT=""
if [ "x$1" = "x-s" ]; then
  SOPT="-s"
  shift
fi

$MAILBIN/newaliases $SOPT $MAILVAR/db/fqdnaliases
