Re: [Exim] receiver_verify problem

Top Page
Delete this message
Reply to this message
Author: Marcus Huedepohl
Date:  
To: Nico Erfurth
CC: exim-users
Subject: Re: [Exim] receiver_verify problem
Nico Erfurth wrote:
> Marcus Huedepohl wrote:
> > spamcheck_director:
> > condition = "${if eq {$received_protocol}{spam-scanned} {0}{1}}"
> > driver = smartuser
> > transport = spamcheck
> > verify = yes
>
> This director accepts ANY recipient, so you should disable it for
> verficication, just set verify = false instead of verify=yes, so it will
> be skipped while verification.


ah, i suspected this smartuser option which is meant as a "catchall". the
problem is, that i don't want to do expensive spamchecks for mails that have
invalid recipients. i have several forwardfile- and aliasfile-directors after
the spamcheck.

maybe i can have a verify-only director _before_ the spamcheck:

verify:
verify = yes

but i don't know which driver to use for this.