Re: [Exim] Clamd,spamd, acl problem error 550 and 421 please…

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Tim Jackson
Ημερομηνία:  
Προς: Doug Block
Υ/ο: exim-users
Αντικείμενο: Re: [Exim] Clamd,spamd, acl problem error 550 and 421 please help
Hi Doug, on Mon, 19 Apr 2004 14:16:26 -0500 you wrote:

> I have been going nuts trying to figure out why this does not work.
> acl_check_rcpt:
> acl_check_data:
> ...


You've completely jumbled up your RCPT and DATA ACLs, meaning that you
effectively have no RCPT ACL and the DATA ACL contains all the stuff which
should be in the RCPT ACL!

The RCPT one should start where it does. The DATA one (which runs in your
case from "acl_check_data:" to "#malware=*") should go somewhere outside
the RCPT one! The RCPT one ends (in your case) with "#  deny    message =
relay not permitted drb", so I suggest you put the DATA ACL after that.


Bear in mind that "blah_blah:" in the ACL section means "this is the start
of an ACL". So you have the start of the acl_check_rcpt ACL, but then
immediately follow it with acl_check_data, which indicates the end of the
RCPT ACL and the start of the DATA one.


Tim