2

Do I need any option, to move matching emails to a subfolder of the inbox?

My /etc/dovecot/conf.d/10-mail.conf:

    namespace inbox {
      inbox = yes
    }

And the /srv/vmail/spam-global.sieve:

    if address "From" "monitoring@example.com" {
            fileinto "INBOX.Monitoring";
    }

This configuration is currently creating a new main folder "INBOX.Monitoring" instead of an INBOX subfolder "Monitoring".

checker284
  • 1,286
  • 3
  • 14
  • 29

1 Answers1

4

Try / as parent-child separator: "INBOX/Monitoring"

AnFi
  • 10,493
  • 3
  • 23
  • 47