Suche neue maildirs, template

This commit is contained in:
Nico Schottelius 2007-06-06 11:41:46 +02:00
parent f36135ec9f
commit 72ae8997f4
1 changed files with 21 additions and 0 deletions

21
suche_neue_mails_maildir.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/sh
#
# Nico Schottelius <nico-linux //@// schottelius.org>
# Date: 06-Jun-2007
# Last Modified: -
# Description: Search for new mailboxes (and later display them via dialog)
#
basedir=~/Maildir
tmp=$(mktemp /tmp/$(basename $0).XXXXXXXXXXXX)
find "$basedir" -name new -type d > "$tmp"
while read dir; do
is_new=$(ls "${dir}" | head -n1)
if [ "$is_new" ]; then
echo "New in $dir"
fi
done < "$tmp"
rm -f "$tmp"