Re: [exim] feature request: set authenticated

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Jakob Hirsch
Datum:  
To: Steffen Heil
CC: exim-users
Betreff: 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?