Re: Maybe a bit offtopic, Sieve beaviour

2022-08-25 Thread João Silva
Thanks for the detailed anwser. So it falls under the "feature" section. I will keep that in mind in future sieves. And I think you are right, :copy only makes sense in situations where the flow can lead to other places than the Inbox. On 24/08/2022 20:04, Sean Kamath wrote: I recommend rea

Re: Maybe a bit offtopic, Sieve beaviour

2022-08-24 Thread Sean Kamath
I recommend reading the RFC: 2.10.2 is where the Implicit Keep is described. Basically, if you don’t take action on a message, there is an “implicit keep” that will save the mail in the default location. If an action *is* taken on a mess

Re: Maybe a bit offtopic, Sieve beaviour

2022-08-24 Thread João Silva
Thanks a lot. I almost missed your email. The :copy will make it behave like intended. On 23/08/2022 20:29, Shawn Heisey wrote: On 8/23/22 03:44, João Silva wrote: If a sieve filter contains a rule if header :regex ["From"] ["@xxx.com","@yyy.pt"] {     fileinto :create "ac"; } The mail s

Re: Maybe a bit offtopic, Sieve beaviour

2022-08-24 Thread João Silva
On 23/08/2022 13:03, Rob Sterenborg (Lists) wrote: On 23-08-2022 11:44, João Silva wrote: Hi If a sieve filter contains a rule if header :regex ["From"] ["@xxx.com","@yyy.pt"] { fileinto :create "ac"; } The mail should be copied to the folder ac and then proceed to other rules th

Re: Maybe a bit offtopic, Sieve beaviour

2022-08-23 Thread Shawn Heisey
On 8/23/22 03:44, João Silva wrote: If a sieve filter contains a rule if header :regex ["From"] ["@xxx.com","@yyy.pt"] {     fileinto :create "ac"; } The mail should be copied to the folder ac and then proceed to other rules that a user might have or I understood the fileinto wrong? I ju