Re: Pigeonhome Sieve: check existence of a folder?

2019-02-28 Thread Martin Johannes Dauser via dovecot
What about extension "mailbox"? https://wiki.dovecot.org/Pigeonhole/Sieve https://tools.ietf.org/html/rfc5490#section-3 A simple example (not tested, but should work): note:  + I use '/' instead of '.' as hierarchical separator + stop; stops the whole script, but you could use elsif instead. req

Re: Dovecot 2.3.3 Mailbox does not exist

2019-02-27 Thread Martin Johannes Dauser via dovecot
Never done shared/public folders but perhaps Debug mode will give a hint.  doveadm -Dv acl get -A Public/Archive On Tue, 2019-02-26 at 10:21 -0500, Kunal A. via dovecot wrote: > HI, > I would deeply aprechiate if someone here could help me address a > problem with ACL. I would personally refrain fr

Re: new Centos server install yum dependency error: i686 vs x86_64

2019-02-26 Thread Martin Johannes Dauser via dovecot
Is your server even running on CentOS 64bit? # arch or # uname -m should return "x86_64". But as your available base package is dovecot- 2.2.36-3.el7.i686 and not dovecot-2.2.36-3.el7.x86_64 I guess you'll see something like "i686" Martin Johannes Dauser On Sat, 2019-02-23 at 07:58 +1100, Voy

Re: sieve filter not working -- matchtype

2019-02-20 Thread Martin Johannes Dauser via dovecot
Scott, you are right. And I guess it's computed faster too. # rule:[test] if header :matches "from" "*.info" { redirect "su...@domain.com"; } Even a TLD like "*.superinfos" may be included: "*@*.*info*" Greetings Martin On Wed, 2019-02-20 at 08:47 +, Scott M. via dovecot wrote: > Wh

Re: sieve filter not working -- wildcard missing

2019-02-20 Thread Martin Johannes Dauser via dovecot
On Wed, 2019-02-20 at 10:37 +0100, Martin Johannes Dauser via dovecot wrote: > On Wed, 2019-02-20 at 10:18 +0100, Martin Johannes Dauser via dovecot > wrote: > > Hi! > > > > You forgot the wildcard '.*' (= Match zero or more instances of any > > single cha

Re: sieve filter not working -- wildcard missing

2019-02-20 Thread Martin Johannes Dauser via dovecot
On Wed, 2019-02-20 at 10:18 +0100, Martin Johannes Dauser via dovecot wrote: > Hi! > > You forgot the wildcard '.*' (= Match zero or more instances of any > single character, except newline) > > require ["regex"]; > # rule:[test] > if header :reg

Re: sieve filter not working -- wildcard missing

2019-02-20 Thread Martin Johannes Dauser via dovecot
Hi! You forgot the wildcard '.*' (= Match zero or more instances of any single character, except newline) require ["regex"]; # rule:[test] if header :regex "from" ".*info$" {   redirect "su...@domain.com"; } With this rule, you are filtering emails from toplevel domain '*.info' or new doma