#!/bin/sh
#
#
# Remove empty ArcMail archives in outbound
#
# Needs GNU find!
#

OUTBOUND="/var/spool/fido/bt/out*"

find $OUTBOUND -type f -size 0c -name '*.[mtwfs][aouehrs][0-9a-z]' -exec rm -f {} \; -print
