#!/bin/sh
#
#
. /etc/default/maildump-milter

if [ "${SPOOLDIR}x" = "x" ]; then
    SPOOLDIR=/srv/mailarchive/maildump
fi

find ${SPOOLDIR} \
    -type f \
    -name 'arch.*.eml' \
    -exec /usr/local/sbin/maildump2smtp -H ${BENNOHOST} -d -f {} \;


