Re: [exim] Running a command in a ACL?

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Warren Baker
Fecha:  
A: James Isolder
Cc: exim-users
Asunto: Re: [exim] Running a command in a ACL?
On Thu, Mar 3, 2011 at 8:25 AM, James Isolder <isolderj@???> wrote:
>
>
> I want to be able to run a command in a ACL.  So in the example below If the ratelimit is hit I want to add the sender_host_address to a file.  This example below I have pieced together from google and reading the documents but it doesn't seem to work.  What am I doing wrong?
> warn        ratelimit = 1 / 5m / strict        condition = ${run{/bin/sh -c "echo ${sender_host_address} >> /usr/local/etc/exim/ratelimited_hosts"}{0}{1}}



Your syntax is wrong, you making use of a condition, try:

warn
ratelimit = 1 / 5m/ strict
set acl_c_myratelimit = ${run{...




--
.warren