Re: [exim] exim condition isn't matching or result don't ass…

Top Page
Delete this message
Reply to this message
Author: deisler
Date:  
To: exim-users
Subject: Re: [exim] exim condition isn't matching or result don't assign
14.05.2013 19:16, Dean Brooks пишет:
> On Tue, May 14, 2013 at 09:47:42AM +0400, deisler wrote:
>> 13.05.2013 18:29, Dean Brooks ?????:
>>> On Mon, May 13, 2013 at 06:08:30PM +0400, deisler wrote:
>>>> 13.05.2013 16:34, Jeremy Harris ?????:
>>>>> I think you don't want the "\" before the "(" and ")".
>>>> Characters exceptions required otherwise () is perceived as a group.
>>> You have to have grouping parentheses or the value won't get returned
>>> into $1.
>>>
>>> This may be closer to what you are looking for:
>>>
>>>    set acl_c_spf_for_dkim = ${if match{$spf_received}{\N\((.*)\)\N}{$1}}

>>>
>>> --
>>> Dean Brooks
>>> dean@???
>>>
>> But why can't i get the text with ()?
> Not sure I understand what you mean. If you mean you would like the ()
> included around the final value assigned into the variable, you
> could use:
>
>    set acl_c_spf_for_dkim = ${if match{$spf_received}{\N(\(.*\))\N}{$1}}

>
> --
> Dean Brooks
> dean@???
>

Yes, this is what I want. Thanks.
But why do i must use double ()? Why is condition {\N\(.*\)\N} not
getting () in result?