Re: [exim] Help to logical OR two conditions

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Cyborg
日付:  
To: exim-users
題目: Re: [exim] Help to logical OR two conditions
Am 01.10.20 um 08:24 schrieb Victor Sudakov via Exim-users:
> Dear Colleagues,
>
> Could you please help me unite the following two ACL expressions into one:
>
> accept condition      = ${lookup{$local_part@$domain}lsearch{/etc/dovecot/aliases}{yes}}
> accept condition      = ${lookup{$local_part@$domain}lsearch{/etc/dovecot/users}{yes}}

>
> Should be fairly simple but... I've tried variants of '${if or {...' by
> the manual but all I got were errors like
>
> "${or" is not a known operator (or a } is missing in a variable reference)
>
> I'm probably miscounting brackets or something. Could you please suggest
> a working tested example of a logical OR between such conditions?
>


accept  condition  = ${if or{\
                               { and{ {CONDITION 1}{CONDITION 2} }}\
                               { CONDITION 3 }\
                              } {1}}

best regards,
Marius