Mike Cardwell wrote:
> I want to ratelimit on a per recipient basis but in the "acl_not_smtp"
> acl rather than the "acl_smtp_rcpt" acl.
>
> The documentation at
> http://www.exim.org/exim-html-current/doc/html/spec_html/ch40.html#ratoptmea
> suggests to me that you can only ratelimit on a per_rcpt basis in
> acl_smtp_rcpt. Is that correct?
Ah. On second thoughts, this isn't really going to be possible. I want
to measure on the value of $sender_ident so currently have:
ratelimit = 100 / 1d / leaky / $sender_ident
It's a shame you can't tell ratelimit to increase by the value of
$recipients_count rather than by the value of 1
MikeC2