checker284
checker284

Reputation: 1316

Move E-Mails to subfolder of inbox using sieve

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" "[email protected]" {
            fileinto "INBOX.Monitoring";
    }

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

Upvotes: 2

Views: 2929

Answers (1)

AnFi
AnFi

Reputation: 10903

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

Upvotes: 4

Related Questions