Mike Cardwell wrote:
> You can actually create a custom acl like this:
>
> acl foobar:
> accept condition = x
> deny
>
> And then write an acl snippet like this in a different acl:
>
> deny acl = foobar
>
> Then if the foobar acl "accepts" the deny succeeds and vice versa.
A recursive acl might look like this:
acl foobar:
warn condition = x
acl = foobar
accept
Mike