Re: [Exim] Multiple recipients and whitelist checks

Top Page
Delete this message
Reply to this message
Author: Raymond Dijkxhoorn
Date:  
To: exim-users
CC: Mike Bacher, Kjetil Torgrim Homme
Subject: Re: [Exim] Multiple recipients and whitelist checks
Hi Phillip,

> > into 1 message per recipient and placed into the queue for outbound
> > delivery,


> You can do this with an "incestuous" call to exim. Make this your first
> router:
>
> split:
> driver = accept
> domains = the.domains.you.want.to.do.this.for
> condition = ${if eq {$received_protocol}{split}{no}{yes}}
> transport = send_to_self
> no_verify
>
> Add this transport:
>
> send_to_self:
> driver = pipe
> batch_max = 1
> use_bsmtp
> command = /usr/sbin/exim -oMr split -bS
> user = exim
>
> Untested. YMMV. You logs will get bigger, of course...


We will test this, and post the results :)
Thanks for the suggestion.

bye,
Raymond.