Autor: Daniel Aquino Datum: To: exim-users, Daniel Aquino Betreff: Re: [exim] Recipient Checking
Thanks man you rock!
I was beginning to believe I was going to have to code my own solution
into exim...
On Dec 12, 2007 3:48 AM, Phil Pennock <exim-users@???> wrote:
> You can use an "accept" Router with "verify_only" on it, with
> ${readsocket}. Untested:
> verify_against_my_funky_daemon:
> driver = accept
> verify_only
> domains = +local_domains
> condition = ${readsocket{/path/to/socket}{$local_part@$domain}}
> The socket response should be 'yes' or some other Exim true value.
> No transport required because it's only used for verification.
When you say verify_only...
That will still send back recipient failures correct?
> The documentation on the ${readsocket} expansion item explains the
> tuning you can do; eg, changing response timeout.