#!/bin/sh
#
#


message=`find ~/incoming/ -type d | grep -v "incoming/$"`

if [ "o$message" != "o" ]; then
 message="Hi,
 just to let you know. there are still files in incoming.
 sometimes the name is not ok, or the info file is missing.
 here is the list:
 
 $message
 "
echo "$message" | mutt -s "v2v incoming not empty" v2v-server-admin@mail.kein.org
fi
