Displaying 2 results from an estimated 2 matches for "spamspam".
Did you mean:
spampal
2019 Mar 07
2
Sieve fileinto copies messages instead of moving them
...igeonhole, 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";
}
# rule:[SPAMSPAM]
if header :contains "subject" "SPAM"
{
fileinto "MaybeSPAM";
}
But when I receive a message with subject "SPAMSPAM", the message turns
up in "SPAM" and "MaybeSPAM". Is this expect...
2019 Mar 07
0
Sieve fileinto copies messages instead of moving them
On 2019-03-07 02:52, Michael Goth via dovecot wrote:
> require ["fileinto"];
> # rule:[SPAM]
> if header :contains "subject" "SPAMSPAM"
> {
> ????fileinto "SPAM";
> }
> # rule:[SPAMSPAM]
> if header :contains "subject" "SPAM"
> {
> ????fileinto "MaybeSPAM";
> }
>
>
> But when I receive a message with subject "SPAMSPAM", the message turns up i...