Displaying 10 results from an estimated 10 matches for "ktsakiltzidi".
Did you mean:
ktsakiltzidis
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, but it's definitely fixed in 0.5.0, which requires dovecot 2.3.
--
Larry Rosenman???????????????????? http://www.lerct...
2018 Mar 02
2
Sieve filter imapflags with "flagvar" not working
well i posted the doveconf...
# Pigeonhole version 0.4.21 (92477967)
2018 Mar 02
2
Sieve filter imapflags with "flagvar" not working
debian package Version: 1:2.2.33.2-1~bpo9+1
On 03/02/2018 07:13 PM, Larry Rosenman wrote:
> What version of pigeonhole are you using? This was fixed recently.
>
>
2018 Mar 02
0
Sieve filter imapflags with "flagvar" not working
...ECOT version, what's the PIGEONHOLE version?
--
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:22 AM, "Konstantinos Tsakiltzidis" <ktsakiltzidis at modulus.gr> wrote:
debian package Version: 1:2.2.33.2-1~bpo9+1
On 03/02/2018 07:13 PM, Larry Rosenman wrote:
> What version of pigeonhole are you using? This was fixed recently.
>
>
2018 Mar 02
0
Sieve filter imapflags with "flagvar" not working
...nman 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:42 AM, "dovecot on behalf of Konstantinos Tsakiltzidis" <dovecot-bounces at dovecot.org on behalf of ktsakiltzidis at modulus.gr> wrote:
well i posted the doveconf...
# Pigeonhole version 0.4.21 (92477967)
2018 Mar 02
0
Sieve filter imapflags with "flagvar" not working
...nman 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 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" {...
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
3
Sieve filter fileinto doesn't preserve flags
Using `fileinto` to move a mail into another mailbox removes flags
that have been set with a previous sieve filter with `addflag`.
# 2.2.33.2 (d6601f4ec): /etc/dovecot/dovecot.conf
# Pigeonhole version 0.4.21 (92477967)
# OS: Linux 4.9.0-6-amd64 x86_64 Debian 9.1 ext4
lda_mailbox_autocreate = yes
lda_mailbox_autosubscribe = yes
mail_debug = yes
mail_location = maildir:/var/vmail/%d/%n
2018 Mar 02
2
Sieve filter doesn't respect mailbox separator
namespace separator is '.',
this sieve script incorrectly tries to put the mail inside a mailbox
rather that beside it, for example if the mailbox is named
'example', the mail will be put in the path 'example/.Spam'
instead of 'example.Spam'
require ["fileinto"];
if header :contains "X-Spam" "yes" {
? fileinto "Spam";
}
#