Displaying 20 results from an estimated 4000 matches similar to: "pigeonhole sieve imapflags bug"
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 `"flagvar"` part works as expected
# 2.2.33.2 (d6601f4ec):
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
>>
2018 Mar 02
1
Sieve filter imapflags with "flagvar" not working
its quite likely fixed in 0.4.22
---Aki TuomiDovecot oy
-------- Original message --------From: Larry Rosenman <larryrtx at gmail.com> Date: 02/03/2018 19:55 (GMT+02:00) To: Konstantinos Tsakiltzidis <ktsakiltzidis at modulus.gr>, dovecot at dovecot.org Subject: Re: Sieve filter imapflags with "flagvar" not working
I don't remember if this was fixed in 0.4.21 or not,
2013 Nov 11
2
blames for using maillists ?
why do you not simply shut up?
# sieve rule
require ["imap4flags"];
# rule:[reindl]
if allof (header :contains "From" "h.reindl at thelounge.net")
{
setflag ["\\Seen","\\Flagged"];
stop;
}
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
2020 Feb 18
3
managesieve / sieve - append dot prefix on moving mails into folder
Hello mailinglist-subscribers,
i have an issue with the managesieve / sieve plugin in dovecot.
We use roundcube as webmailer and if i define a new filter to move
incoming mails directly into a subfolder i get the following sieve-code:
require ["fileinto","imap4flags"];
# rule:[mail into folder]
if allof (header :contains "from" "sender at domain.org")
{
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";
>
>
2018 Mar 02
0
Sieve filter imapflags with "flagvar" not working
What version of pigeonhole are you using? This was fixed recently.
--
Larry Rosenman http://www.lerctr.org/~ler
Phone: +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
2008 Mar 10
5
Sieve doesnt filter
Hi!
I have a config like this (globalsieverc):
require "fileinto";
if address :domain :is "to" "domain.de" {
if header :matches "X-Spam-Level" "\\*\\*\\*\\*\\*\\*\\*\\*" {
#discard;
fileinto "spamdir";
}
}
else {
# The rest goes into INBOX
# default is "implicit keep", we do
2018 Aug 16
2
imapsieve: Change message flags on COPY
Hello, I'm trying to do a simple thing using imapsieve, I want messages to be marked as read when moved to certain folders (Trash, Archive, Spam).
All the set up to run the imapsieve script works perfectly, but I'm having trouble to make changes effective. As the RFC says, IMAP messages are immutable, but it's not clear to me reading the specs if this applies to IMAP flags too, as one
2018 Jan 05
1
Released Pigeonhole v0.5.0.1 for Dovecot v2.3.0.
Hello Dovecot users,
This is a bugfix release to mend some problems that were found in
v0.5.0. The imap4flags bug is actually not first seen in the 0.5.0
release (it is ancient), but I included the fix for it anyway.
Changelog v0.5.0.1:
- imap4flags extension: Fix binary corruption occurring when
setflag/addflag/removeflag flag-list is a variable.
- sieve-extprograms plugin: Fix segfault
2018 Jan 05
1
Released Pigeonhole v0.5.0.1 for Dovecot v2.3.0.
Hello Dovecot users,
This is a bugfix release to mend some problems that were found in
v0.5.0. The imap4flags bug is actually not first seen in the 0.5.0
release (it is ancient), but I included the fix for it anyway.
Changelog v0.5.0.1:
- imap4flags extension: Fix binary corruption occurring when
setflag/addflag/removeflag flag-list is a variable.
- sieve-extprograms plugin: Fix segfault
2023 Mar 11
1
set imap flags in user sieve scripts
spi skrev den 2023-03-11 13:34:
> if address :domain "From" "whatever.com"{
> fileinto :flags ["\\todo"] "working/whatever";
> }
require ["fileinto","imap4flags"];
# rule:[set todo]
if allof (header :contains "subject" "set imap flags in user sieve
scripts", header :contains "from" "user at
2010 Dec 02
3
Permission denied error log messages
Hi Timo,
ok, I have a large 2.07 NFS setup, and I have been monitoring error
messages to make sure I catch things, and I've come across a lot of
messages that come in pairs and look like this :
Dec 01 17:48:35 lda(paul at xxxxxx.com): Error:
write(/home/mailboxes/data/301/paul at xxxxxx.com/Maildir/tmp/1291254514.M620308P83269.mta2.scaledsystems.com)
failed: Permission denied
Dec 01
2010 Jun 18
1
strange regex sieve filter error
Hi all,
ok, I'm getting an error produced by the following sieve file :
require ["fileinto","copy"];
# rule:[SPAM-TAG]
if allof ( header :regex "Subject" "^\\[SPAM-TAG\\]")
{
fileinto "SPAM-TAG";
stop;
}
and I'm getting the following error in the dovecot delivery log :
main_script: line 3: error: unknown tagged
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???????
2010 Jun 25
1
Pigeonhole Managesieve issue with Dovecot 2.0
Hi all,
ok, I am running version v2.0.beta6 and the latest pigeonhole build to
run managesieve and the sieve delivery filters...
I am getting the following response from the managesieve port when
connecting :
Escape character is '^]'.
"IMPLEMENTATION" "Dovecot"
"SIEVE" ""
"SASL" "PLAIN"
"STARTTLS"
"VERSION"
2009 Aug 11
2
QUOTA not appearing in CAPA
Hi,
ok, I've compiled it a few times, and made sure all of my settings are
correct, but the QUOTA is not appearing in the opening CAPA that comes
with the greeting.
I have it configured in the dovecot.conf like so:
protocol imap {
mail_plugins = quota imap_quota
}
and I can see when turning debugging on that the following is spit out
when starting :
Starting DovecotILoading modules
2023 Mar 11
1
set imap flags in user sieve scripts
Hi all
Could anyone lead me into the right direction please?
I use 'addflag ...' or 'fileinto :flags ...' in global sieve scripts to
flag and sort incoming mail - that works.
Trying to do that with custom user scripts doesn't work - I get the
error that imap4flags only can be used in global scripts. Is there any
way to get incoming mails labled and sorted by user sieve