Found 385 messages waiting
Mevershosting.nl
info at mevershosting.nl
Wed Oct 18 12:39:31 IST 2006
Mike, list,
This is the script i use, i doesnt delete files but renames them. You
could stop mailscanner first in the script before running this, but i
found it doesnt really make a differance.
#!/bin/sh
cd /var/spool/mqueue.in
# remove df files with no corresponding qf files
for df in df*
do
qf=`echo $df | sed 's/d/q/'`
if [ -r $df -a ! -f $qf ]
then
echo -n ""
mv $df `echo $df | sed 's/d/D/'`
fi
done
# remove qf files with no corresponding df files
for qf in qf*
do
df=`echo $qf | sed 's/q/d/'`
if [ -r $qf -a ! -f $df ]
then
echo -n ""
mv $qf `echo $qf | sed 's/q/Q/'`
fi
done
cd /var/spool/mqueue
# remove df files with no corresponding qf files
for df in df*
do
qf=`echo $df | sed 's/d/q/'`
if [ -r $df -a ! -f $qf ]
then
echo -n ""
mv $df `echo $df | sed 's/d/D/'`
fi
done
# remove qf files with no corresponding df files
for qf in qf*
do
df=`echo $qf | sed 's/q/d/'`
if [ -r $qf -a ! -f $df ]
then
echo -n ""
mv $qf `echo $qf | sed 's/q/Q/'`
fi
done
-----Oorspronkelijk bericht-----
Van: Michael Masse [mailto:mrm at medicine.wisc.edu]
Verzonden: woensdag 18 oktober 2006 6:35
Aan: MailScanner discussion
Onderwerp: RE: Found 385 messages waiting
>If you want i can post the script i user to get rid of the lose ends..
>I checked and rechecked, the mails the files come from seem to have
gone
>through so no worry there.
>Richard
That would be much appreciated.
Mike
--
MailScanner mailing list
mailscanner at lists.mailscanner.info
http://lists.mailscanner.info/mailman/listinfo/mailscanner
Before posting, read http://wiki.mailscanner.info/posting
Support MailScanner development - buy the book off the website!
-----
Scanned for virus and spam
-----
Scanned for virus and spam
More information about the MailScanner
mailing list