What does your /var/qmail/rc file look like?
-----Original Message-----
From: Jasper Metselaar [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 28, 2003 7:38 AM
To: [EMAIL PROTECTED]
Subject: [vchkpw] Re /var/mail/vpopmail
Doublebounce settings and .qmail files are ok.
Below is a header of a message dumped to /var/mail/vpopmail. As you can
see, this is not a bounce message... it's the original. When I sent this
message to a non existing address the message was dumped to
/var/mail/vpopmail and a non-delivery report was sent to the originator
(me).
====START====
>From vpopmail Thu Aug 28 16:31:45 2003
Received: (qmail 4184 invoked from network); 28 Aug 2003 14:31:45 -0000
Received: from xxx.xxx.xxx (xxx.xxx.xxx.xx)
by 0 with SMTP; 28 Aug 2003 14:31:45 -0000
Received: from [xxx.xxx.xx.xxx] (helo=xxxx.xxxx.xxx)
by xx.xxxxx.xxx with esmtp (Exim 3.36 #1)
id 19sNoN-0001mk-00
for [EMAIL PROTECTED]; Thu, 28 Aug 2003 16:31:43 +0200
Received: by wfwin3 with Internet Mail Service (5.5.2653.19)
id <RYZB9G85>; Thu, 28 Aug 2003 16:31:39 +0200
Message-ID: <[EMAIL PROTECTED]>
From: "Metselaar, J.M." <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
Subject: This is a test
Date: Thu, 28 Aug 2003 16:30:29 +0200
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2653.19)
Content-Type: text/plain
====END====
For some reason I think the problem is in my maildrop script, but I can't
figure out where. The script is below:
====START====
import EXT
import HOST
VPOP="| /home/vpopmail/bin/vdelivermail '' bounce-no-mailbox"
VHOME=`/home/vpopmail/bin/vuserinfo -d [EMAIL PROTECTED]
if ( $SIZE < 262144 )
{
exception {
xfilter "/usr/bin/spamc -f -u [EMAIL PROTECTED]"
}
}
if (/^X-Spam-Flag: *YES/)
{
# try filtering it using user-defined rules
exception {
include $VHOME/Maildir/.mailfilter
}
# then try delivering it to a Spam folder
exception {
# to "$VPOP"
to "$VHOME/Maildir/"
}
# ah well, I guess they'll just have to live with disappointment
exception {
to "$VPOP"
}
}
else {
exception {
include $VHOME/Maildir/.mailfilter
}
exception {
to "$VPOP"
}
}
====END====
Any ideas?
Thanks in advance!
- Jasper
> I don't think it's vpopmail that's dropping it into that file. It sounds
> more like mail is being delivered to the vpopmail user on your local
> system.> What does qmail have for it's double bounce account (run
> /var/qmail/bin/qmail-showctl to see) and also what does your
> /var/qmail/alias directory look like.. more specifically the .qmail files
> inside it.
>
>> -----Original Message-----
>> From: Jasper Metselaar [mailto:[EMAIL PROTECTED]
>> Sent: Wednesday, August 27, 2003 3:04 AM
>> To: [EMAIL PROTECTED]
>> Subject: [vchkpw] /var/mail/vpopmail
>>
>>
>> Hi,
>>
>> Vpopmail is running fine on my server, but there is on thing that's
>> strange (in my opinion, anyway ;-)):There is a very fast growing file:
>> /var/mail/vpopmail
>>
>> It looks like vpopmail is dumping undeliverable mail into this file. Is
>> this normal or is there a misconfiguration somewhere?
>> Thanks!
>>
>> - Jasper