20 Sep
2018
20 Sep
'18
1:22 a.m.
On 19 September 2018, at 12:54, Adam Raszkiewicz <araszkiewicz@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-type with body?
Thanks
I have the following that works:
if allof (header :contains "from" "fbl-no-reply@postmaster.aol.com", body :contains :raw "some text") { fileinto "Deleted Messages"; stop; }