emarket@example.com manager1@example.com,manager2@example.com,manager3@example.com,parser@example.com
In addition, Dovecot places all such emails in the Orders folder of each sales manager. For this, a Sieve filter rule has been created:
require ["fileinto", "envelope"];
if envelope: is "to" "emarket@example.com" {
fileinto "Orders";
stop;
}
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?