Displaying 2 results from an estimated 2 matches for "64bee442".
2019 Mar 07
0
Sieve fileinto copies messages instead of moving them
...r for chaos and madness
await thee at its end.
*/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: OpenPGP digital signature
URL: <https://dovecot.org/pipermail/dovecot/attachments/20190307/64bee442/attachment.sig>
2019 Mar 07
2
Sieve fileinto copies messages instead of moving them
Hi,
we're running Doveocot 2.3.4.1 with Pigeonhole, from repo.webflow.org.
As far as I understand the RFC for 'fileinto', the following Sieve
script should move a message either into the folder "SPAM" or "MaybeSPAM":
require ["fileinto"];
# rule:[SPAM]
if header :contains "subject" "SPAMSPAM"
{
fileinto "SPAM";
}
#