Re: [exim] feature request: set authenticated

Pàgina inicial
Delete this message
Reply to this message
Autor: Jakob Hirsch
Data:  
A: Steffen Heil
CC: exim-users
Assumpte: Re: [exim] feature request: set authenticated
Quoting Steffen Heil:

> I know, I can do all this using $ack_cX, but I have a lot of rules, all of


is it really so hard?

set a macro, e.g. "ACL_AUTHENTICATED = acl_c99"

In some acl (e.g. mail from, that's usually the first one used after
authentication):

warn
authenticated = *
set ACL_AUTHENTICATED = $authenticated_id

warn
condition = ...
set ACL_AUTHENTICATED = $authenticated_id

and replace all "authenticated = *" lines with "condition = ${if
def:ACL_AUTHENTICATED}".

Or am I missing something?