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
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
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
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
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
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
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