* Stephan Bosch <stephan at rename-it.nl> 2017.01.14 12:35:> Fixed: > > https://github.com/dovecot/pigeonhole/commit/772485538302957ebada484b6eedec57136bc737Hi Stephan, I recently noticed that the 'flags' still cause issues when using an _include_ script like: require ["include","copy","fileinto","imap4flags","vacation"]; include :global "global"; In this case the file options work fine, but the flags are not set. Regards Thomas -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: Digital signature URL: <http://dovecot.org/pipermail/dovecot/attachments/20170119/9b5443b0/attachment.sig>
Op 1/19/2017 om 10:07 AM schreef Thomas Leuxner:> * Stephan Bosch <stephan at rename-it.nl> 2017.01.14 12:35: > >> Fixed: >> >> https://github.com/dovecot/pigeonhole/commit/772485538302957ebada484b6eedec57136bc737 > Hi Stephan, > > I recently noticed that the 'flags' still cause issues when using an _include_ script like: > > require ["include","copy","fileinto","imap4flags","vacation"]; > include :global "global"; > > In this case the file options work fine, but the flags are not set.Could you provide a more detailed example? Regards, Stephan.
* Stephan Bosch <stephan at rename-it.nl> 2017.01.19 10:32:> Could you provide a more detailed example?Sure. Personal script v /var/vmail/domains/leuxner.net/tlx/.dovecot.sieve: require ["include","copy","fileinto","imap4flags","vacation"]; include :global "global"; -- Global script referenced v /var/vmail/conf.d/leuxner.net/sieve/global.sieve: require ["fileinto","imap4flags","duplicate"]; #Newsletters if header :contains "List-Id" "debian-security-announce.lists.debian.org" { removeflag "\\Flagged $MailFlagBit1"; fileinto ":public/Newsletters/Debian/Security"; addflag "\\Flagged $MailFlagBit1"; keep; } -- Basically it is reproducible with the same stanza we used before by putting this in the included script: #Test if address :is "From" "user at example.com" { removeflag "\\Flagged $MailFlagBit1"; fileinto "Trash"; addflag "\\Flagged $MailFlagBit1"; keep; } Regards Thomas -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: Digital signature URL: <http://dovecot.org/pipermail/dovecot/attachments/20170119/fef3d583/attachment.sig>