search for: rfc5232

Displaying 15 results from an estimated 15 matches for "rfc5232".

Did you mean: rfc5230
2010 Aug 20
2
pigeonhole sieve imapflags bug
Hi all, ok, I just instealled the dovecot 2.0.0 release, and the latest mercurial pigeonhole source. All is well, except for a particular sieve rule that may not be working right. It is a simple rule that looks like this : require ["fileinto","imap4flags"]; # rule:[Past Due Notices] if allof (header :contains "Subject" "Account Past Due Notice") {
2012 Jul 06
2
Pigeonhole Sieve SetFlag question
Hello, I use FreeBSD 8.2-RELEASE-p7 i386 dovecot-2.1.6 dovecot-pigeonhole-0.3.0_1 I have the following problem: When I use the following script - the flag is set in \Seen : require ["imap4flags"]; # rule:[test] if anyof (header :contains "Subject" "test") { setflag "\\Seen"; stop; } . SELECT INBOX * OK [CLOSED] Previous mailbox
2018 Mar 02
4
Sieve filter imapflags with "flagvar" not working
Following the rfc5232, Sieve Email Filtering: Imap4flags Extension the following filter doesn't work when the `"flagvar"` part is added require "imap4flags"; if header :contains "X-Spam" "Yes" { ? setflag "flagvar" "spam"; } removing the `"flag...
2018 Dec 04
3
BUG: sieve does not set seen-Flag
Did you notice the fileinto :flags usage? It comes from imap4sieve extension. https://tools.ietf.org/html/rfc5232#page-7 Aki > On 04 December 2018 at 17:13 Larry Rosenman <larryrtx at gmail.com> wrote: > > > I've been using that recipe for YEARS, and it DOES work for me on FreeBSD > (I'm also the port maintainer for dovecot and pigeonhole). > > Not sure exactly what you...
2018 Mar 05
1
Sieve filter imapflags with "flagvar" not working
tried also with `require "variables"` doesn't seem to work, the flag is not added at all On 03/03/2018 09:54 AM, Stephan Bosch wrote: > Op 3/2/2018 om 6:09 PM schreef Konstantinos Tsakiltzidis: >> Following the rfc5232, Sieve Email Filtering: Imap4flags Extension >> >> the following filter doesn't work when the `"flagvar"` part is added >> >> require "imap4flags"; >> >> if header :contains "X-Spam" "Yes" { >> >> ? setflag...
2018 May 30
0
Second rule isn't apply when first rule matches
...INBOX.I must answere > + add IMAP flags: \flagged > > Implicit keep: > > (none) > > sieve-test(root): Info: final result: success > $ > > The IMAP flag was set ! > > > Any ideas ? > You should read the specification: https://tools.ietf.org/html/rfc5232 Summary: the addflag command doesn't actually add the flag to the message immediately; instead, it adds it to an internal list of assigned flags. Only once fileinto is executed, the current list of flags is applied to the message stored for that particular fileinto action. Performing an ad...
2018 Mar 03
0
Sieve filter imapflags with "flagvar" not working
Op 3/2/2018 om 6:09 PM schreef Konstantinos Tsakiltzidis: > Following the rfc5232, Sieve Email Filtering: Imap4flags Extension > > the following filter doesn't work when the `"flagvar"` part is added > > require "imap4flags"; > > if header :contains "X-Spam" "Yes" { > > ? setflag "flagvar" "spam&q...
2018 Mar 02
0
Sieve filter imapflags with "flagvar" not working
...+1 214-642-9640 E-Mail: larryrtx at gmail.com US Mail: 5708 Sabbia Drive, Round Rock, TX 78665-2106 ?On 3/2/18, 11:09 AM, "dovecot on behalf of Konstantinos Tsakiltzidis" <dovecot-bounces at dovecot.org on behalf of ktsakiltzidis at modulus.gr> wrote: Following the rfc5232, Sieve Email Filtering: Imap4flags Extension the following filter doesn't work when the `"flagvar"` part is added require "imap4flags"; if header :contains "X-Spam" "Yes" { setflag "flagvar" "spam&quot...
2018 Aug 16
2
imapsieve: Change message flags on COPY
...one can really change flags in IMAP without having to create a new (modified) message, I guess this is an exception? 3.8. The "setflag", "deleteflag", and "removeflag" Actions Implementations of IMAP events in Sieve MUST also support the imap4flags extension [RFC5232], and the actions associated with it are all applicable to any case that falls under IMAP events in Sieve. It is worth noting also that the "hasflag" test that is defined in the imap4flags extension might be particularly useful in scripts triggered by flag changes ("hasf...
2018 May 28
3
Second rule isn't apply when first rule matches
Dear list, I want to define two concurrent rules : 1. I want to flag an e-mail containing the word "cloud" in the body 2. I want to move mail sent explicitly to me (as opposed to mail sent to an alias I am part of) going to "INOBX.I must answere this" If I put rule (1) first, everything works as expected. If put rule (2) first, only that rule applies. Here's a small test
2018 Aug 16
0
imapsieve: Change message flags on COPY
...ags in IMAP without having to create a new (modified) message, I guess this is an exception? > > 3.8. The "setflag", "deleteflag", and "removeflag" Actions > > Implementations of IMAP events in Sieve MUST also support the > imap4flags extension [RFC5232], and the actions associated with it > are all applicable to any case that falls under IMAP events in Sieve. > > It is worth noting also that the "hasflag" test that is defined in > the imap4flags extension might be particularly useful in scripts > triggered...
2018 Dec 04
0
BUG: sieve does not set seen-Flag
.... Not when i set it together with other flags in one line. The other flags are set. Only \Seen is not set. BG Jakob Am 04.12.18 um 16:17 schrieb Aki Tuomi: > Did you notice the > > fileinto :flags > > usage? It comes from imap4sieve extension. > > https://tools.ietf.org/html/rfc5232#page-7 > > Aki > >> On 04 December 2018 at 17:13 Larry Rosenman <larryrtx at gmail.com> wrote: >> >> >> I've been using that recipe for YEARS, and it DOES work for me on FreeBSD >> (I'm also the port maintainer for dovecot and pigeonhole). >&g...
2016 Jan 28
4
Setting Recent Flag on New Messages?
So I?m looking at setting up some house-keeping for my dovecot mailboxes, specifically deleting messages in trash, spam etc., by deleting Seen messages older than X days. In order to protect against the edge case of a user reading a message right before the deletion task however I?d like to do something like the following: doveadm expunge -A OLD SEEN BEFORE 7d MAILBOX Trash doveadm flags -A
2018 Dec 04
2
BUG: sieve does not set seen-Flag
...ne. The other flags > are set. Only \Seen is not set. > > BG Jakob > > Am 04.12.18 um 16:17 schrieb Aki Tuomi: > >> Did you notice the >> >> fileinto :flags >> >> usage? It comes from imap4sieve extension. >> >> https://tools.ietf.org/html/rfc5232#page-7 >> >> Aki >> >>> On 04 December 2018 at 17:13 Larry Rosenman <larryrtx at gmail.com> wrote: >>> >>> >>> I've been using that recipe for YEARS, and it DOES work for me on FreeBSD >>> (I'm also the port maintainer for...
2018 Dec 04
2
BUG: sieve does not set seen-Flag
I tried it like you... doesn't work. The message gets all the other flags, but not the \Seen-Flag. My repo is https://repo.dovecot.org/ce-2.3-latest/debian/stretch stretch dpkg -l|grep dove ii? dovecot-core????????????????????? 2:2.3.4-2~stretch????????????? amd64??????? secure POP3/IMAP server - core files ii? dovecot-imapd???????????????????? 2:2.3.4-2~stretch????????????? amd64???????