Hi,

I am observing this weird problem. One user sends mail to another on the same domain. The mail appears in all the logs, also in a maildrop log (logfile "/home/vpopmail/maildrop.log") but the mail seems to never appear in the inbox nor the spam folder, any ideas?

Best Regards,
Maciej Soltysiak

Here's my .mailfilter file:

SHELL="/bin/sh"
import EXT
import HOST
VPOP="| /home/vpopmail/bin/vdelivermail '' bounce-no-mailbox"
VHOME=`/home/vpopmail/bin/vuserinfo -d [EMAIL PROTECTED]

logfile "/home/vpopmail/maildrop.log"

if (/^X-Spam-Status: Yes/)
{
       `test -d Maildir/.spam`
       if( $RETURNCODE == 1 )
       {
               `/usr/local/bin/maildirmake -f spam Maildir`
               `echo "INBOX.spam" >> Maildir/courierimapsubscribed`
       }

       exception {
               to "Maildir/.spam/"
       }

       exception {
               to "Maildir"
       }
}
else
{
       exception {
               to "Maildir"
       }
}

Reply via email to