<html><body><span style="display:block;" class="xfm_38473803"><span style="color:rgb(36, 39, 41);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;font-size:15px;">We have an emarket@example.com mailbox that receives orders from customers. Postfix redirects such emails to the email addresses of our sales managers, as well as to the special address parser@example.com, which is used by some analytical software. For this, a file named "Virtual" has been created in the Postfix folder with the following contents:</span><div><pre style="margin-top:0px;margin-bottom:calc(var(--s-prose-spacing) + 0.4em);padding:12px;border:0px;font-stretch:inherit;line-height:1.30769;font-family:var(--ff-mono);font-size:13px;vertical-align:baseline;width:auto;max-height:600px;overflow:auto;background-color:var(--highlight-bg);border-radius:5px;color:var(--highlight-color);"><code style="margin:0px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;font-weight:inherit;font-stretch:inherit;line-height:inherit;font-family:var(--ff-mono);vertical-align:baseline;background-color:transparent;white-space:inherit;color:var(--black-800);border-radius:0px;">emarket@example.com   manager1@example.com,manager2@example.com,manager3@example.com,parser@example.com</code></pre><div><span style="color:rgb(36, 39, 41);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;font-size:15px;">In addition, Dovecot places all such emails in the Orders folder of each sales manager. For this, a Sieve filter rule has been created:</span><span style="color:rgb(36, 39, 41);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;font-size:15px;"><br/></span></div><div><pre style="margin-top:0px;margin-bottom:calc(var(--s-prose-spacing) + 0.4em);padding:12px;border:0px;font-stretch:inherit;line-height:1.30769;font-family:var(--ff-mono);font-size:13px;vertical-align:baseline;width:auto;max-height:600px;overflow:auto;background-color:var(--highlight-bg);border-radius:5px;color:var(--highlight-color);"><code style="margin:0px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;font-weight:inherit;font-stretch:inherit;line-height:inherit;font-family:var(--ff-mono);vertical-align:baseline;background-color:transparent;white-space:inherit;color:var(--black-800);border-radius:0px;">require ["fileinto", "envelope"];
if envelope: is "to" "emarket@example.com" {
  fileinto "Orders";
  stop;
}</code></pre></div><div><span style="color:rgb(36, 39, 41);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;font-size:15px;">But the problem is that the analytics software that uses the parser@example.com mailbox is subscribed only to the default Inbox folder. And it doesn't know how to work with the Orders folder. So I need to somehow prevent the filter from being applied to the parser@example.com mailbox. How can I do this using Dovecot or Sieve?</span><span style="color:rgb(36, 39, 41);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;font-size:15px;"><br/></span></div></div></span></body></html>