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