Displaying 2 results from an estimated 2 matches for "removemail".
Did you mean:
remotemail
2019 Nov 27
2
Duplicate e-mail with Dovecot and Sieve
The "duplicate" test was removed because not working in this particular
case, I already read the RFC but I didn't find anything useful for our case.
I'll try replacing `if true` with `if not duplicate` into sieve script
and I'll post back the result.
The "true" check is used to enable the out of office rule, otherwise we
use "if false # true" to
2019 Nov 28
2
Duplicate e-mail with Dovecot and Sieve
...ected to LIST at domain.tld,
otherwise every user of the LIST will receive two e-mail, one directed
to the LIST and one generated from the redirect of the sieve script by
the user with out of office in active state.
So we're considering to add this part to the users sieve scripts:
/# rule:[RemoveMail]/
/if allof (header :contains "X-Sieve" "Pigeonhole Sieve", header
:contains "X-Sieve-Redirected-From" "domain.tld", header :contains
["to", "cc"] "LIST at domain.tld")//
//{//
//?? ?fileinto "Trash";//
//}/
So the...