mailfilter script erstell seltsames verzeichnis

FreeBSD, Gentoo, openSUSE, CentOS, Ubuntu, Debian
Post Reply
maui
Posts: 83
Joined: 2002-12-10 20:20
 

mailfilter script erstell seltsames verzeichnis

Post by maui »

hallo,
ich nutze den q-mail toaster inkl. content scanning gem. eurem howto.
alles funktioniert bestens, nur ist mir heute etwas seltsames aufgefallen.

das script der mailfilter methode 2 erstellt im ausgeführten verzeichnis ein unterverzeichnis namens -8

Code: Select all

if ( $SIZE < 262144 ) 
{ 
xfilter "/usr/bin/spamc -f -u $EXT@$HOST" 

if (/^X-Spam-Flag: YES/) 
{ 
cc "|/usr/bin/spamassassin -d |/usr/bin/spamprobe -c -d $VHOME -8 spam" 
xfilter "/usr/bin/spamassassin -d" 
xfilter "/usr/bin/reformail -I "X-SpamProbe: SPAM"" 
} 
else 
{ 
SCORE = `/usr/bin/spamprobe -c -d $VHOME -8 receive` 
xfilter "/usr/bin/reformail -I "X-SpamProbe: $SCORE"" 
} 
} 

if ( /^X-SpamProbe: SPAM/ ) 
{ 
to "$VHOME/Maildir/.Spam" 
exit 
} 
else 
{ 
to "$VPOP" 
exit 
Wie kann ich dieses "-8" Verzeichnis nun löschen ? rm -8 funzt soweit nicht :wink:
maui
Posts: 83
Joined: 2002-12-10 20:20
 

Re: mailfilter script erstell seltsames verzeichnis

Post by maui »

für alle mit ähnlichen problemen:

ein rm ./-8 -rf

hat geholfen
Post Reply