Displaying 2 results from an estimated 2 matches for "removeduplicatemail".
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
...:contains "X-Sieve-Redirected-From" "domain.tld", header :contains
["to", "cc"] "LIST at domain.tld")//
//{//
//?? ?fileinto "Trash";//
//}/
So the script become:
/require ["fileinto","vacation-seconds"];/
/# rule:[RemoveDuplicateMail]/
///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";
/
/}/
/# rule:[Out...