Displaying 3 results from an estimated 3 matches for "superinfos".
Did you mean:
superinfo
2019 Feb 20
1
sieve filter not working -- wildcard missing
...iltering emails from toplevel domain
> '*.info'
> or new domains that might occur in future (e.g '*.superinfo'). If you
> want to restrict to classic tld '*.info' change the regex to
>
> ".*\.info$"
Oh, and if you want to include a TLD like "*.superinfos" The regex
needs to be
".*\..*info[^.]$"
>
>
> The draft lists a table of common regex in section2:
> https://tools.ietf.org/html/draft-murchison-sieve-regex-08#section-2
>
>
> There are online regex checker like https://regex101.com thought not
> specif...
2019 Feb 20
5
sieve filter not working
I've Dovecot and dovecot-sieve v 2.2.27 installed on a Debian 9.6. I'm
trying to set a Sieve filter which will redirect all emails from `info`
(i.e. .info) TLD to another email. This is the filter:
require ["regex"];
# rule:[test]
if header :regex "from" "info$"
{
redirect "subbs at domain.com";
}
It's not being honored; all emails from .info
2019 Feb 20
0
sieve filter not working -- wildcard missing
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 "subbs at domain.com";
}
With this rule, you are filtering emails from toplevel domain '*.info'
or new domains that might occur in future (e.g