Re: [exim] feature request: set authenticated

Top Page
Delete this message
Reply to this message
Author: Jakob Hirsch
Date:  
To: Steffen Heil
CC: exim-users
Subject: 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?