DJ <[EMAIL PROTECTED]> writes: > Ok, qmail back online. here is what I got: > > Above I sent an email from [EMAIL PROTECTED] User32 received an email from > tmda. but when confirmed, still nothing in ./Maildir/
What is your DELIVERY configuration set to? If you haven't set it and you're running qmail, then it defaults to "_qok_". This is a magic value that tells tmda-filter to simply exit with a 0 return code. qmail sees that and continues to process the rest of your .qmail file. So far, nothing has been delivered. > When I take out tmda in the .qmail, I get all my emails. Here is my latest > > > cat ~dj/.qmail > #|/usr/bin/autorespond 10 5 response.txt /home/dj/logs/ 1 + > #./Maildir/ > |preline python2 /usr/local/tmda-0.68/bin/tmda-filter This is the problem, I think. You need to deliver to your Maildir after tmda-filter runs. |preline python2 /usr/local/tmda-0.68/bin/tmda-filter ./Maildir/ If there is a problem, tmda-filter will exit with a return code other than 0, so the delivery to the Maildir won't happen. If tmda-filter is happy with the mail, it will exit 0 and qmail will deliver into the Maildir. BTW, I also assume you have a .qmail-default. It can simply be a link to your .qmail, but it needs to be there. > > cat /var/qmail/control/defaultdelivery > ./Maildir/ As long as you have a .qmail file, qmail does not perform the default delivery, so this file is not used in your particular configuration. Tim _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
