#!/bin/sh
#
# $Id: out-rm0.in,v 1.1.1.1 2003/09/23 17:37:27 rusfidogate Exp $
#
# Remove empty ArcMail archives in outbound
#
# Needs GNU find!
#

OUTBOUND="/var/spool/ftn/out*"

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