Displaying 2 results from an estimated 2 matches for "original_message_id".
2018 Sep 19
3
[Sieve] Matches on body content - looking for working example
I have tried to do something like
if body :content ["multipart"] :matches ["Original-Message-ID" ?*?] { set "Original_Message_ID" "${0}"; }
but instead getting Original Message ID I?m getting value from previous match which was
if envelope :matches "From" "*" { set "sender" "${0}"; }
Is there any example of working :matches matching-type with body?
Thanks
----------...
2018 Sep 19
0
[Sieve] Matches on body content - looking for working example
> On 19 September 2018, at 12:54, Adam Raszkiewicz <araszkiewicz at medallies.com> wrote:
>
> I have tried to do something like
>
> if body :content ["multipart"] :matches ["Original-Message-ID" ?*?] { set "Original_Message_ID" "${0}"; }
>
> but instead getting Original Message ID I?m getting value from previous match which was
>
> if envelope :matches "From" "*" { set "sender" "${0}"; }
>
> Is there any example of working :matches matching-ty...