search for: listcc

Displaying 5 results from an estimated 5 matches for "listcc".

Did you mean: listac
2020 Oct 01
1
Sieve not exists
...some random messages put into this mailbox that definitely have list-ip headers (including some messages from this list) and that do not have multiple addresses. I believe this started happening on 20200922, which would hav been when I applied the most recent update to dovecot, as that is when the listCC box seemed to explode, but I do not have traces over 7 days old. if allof (address :count "ge" :comparator "i;ascii-numeric" ["to", "cc"] ["2"], not exists ["list-id","mailing-list", "x-loop"] )...
2020 Jul 19
3
Sieve and handling multiple addresses
...c"] "kremels" { if allof (address :count "ge" :comperator "i:ascii-numeric" ["to", "cc"] 2, (not exists ["list-id","mailing-list" "x-loop"] ) { fileinto :create "listCC" } } So as I read this, if the list address is not in to or cc, then abort, otherwise, check if there is more than one address specified, AND there are no list headers, file it in a specific mailbox. Not exactly what I want to do eventually, but enough for testing at this point....
2020 Jul 19
0
Sieve and handling multiple addresses
...remels" { if allof (address :count "ge" :comperator "i;ascii-numeric" ["to", "cc"] ["2"], not exists ["list-id","mailing-list", "x-loop"] ) { fileinto :create "listCC"; } } I get: .active_sieve: line 55: error: unknown tagged argument ':comperator' for the address test (reported only once at first occurrence). .active_sieve: error: validation failed. <https://tools.ietf.org/html/rfc5231#section-6> says: > Using the message: >...
2020 Jul 19
1
Sieve and handling multiple addresses
...:comperator "i;ascii-numeric" ["to", "cc"] ["2"], </div> <div> not exists ["list-id","mailing-list", "x-loop"] ) </div> <div> { </div> <div> fileinto :create "listCC"; </div> <div> } </div> <div> } </div> <div> <br> </div> <div> I get: </div> <div> .active_sieve: line 55: error: unknown tagged argument ':comperator' for the address te...
2020 Jul 12
2
Sieve and handling multiple addresses
On 12 Jul 2020, at 10:17, Benny Pedersen <me at junc.eu> wrote: > @lbutlr skrev den 2020-07-12 16:43: >> I an trying to write a sieve action that will take mail that is >> addressed to a user only it is filed in a mailbox (e.g. "Direct") if >> it is to the email AND to any other email address, then file it in a >> mailbox named, e.g. "Cc". And