Displaying 4 results from an estimated 4 matches for "maybespam".
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";
}
# rule:[SPAMSPAM]
if header :contains "subject" "SPAM"
{
fileinto "MaybeSPAM";
}
But when I receive a message with sub...
2019 Mar 07
0
Sieve fileinto copies messages instead of moving them
...ecot 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 in
> "SPAM" and "MaybeSPAM". Is this expected behaviour?
You are missing a stop after the fileinto. Otherwise it will not stop, but
rather processing the next...
2009 Apr 28
3
Virtual mailbox plugin, 4 days of struggling
Hello,
I finally got an INBOX to work, but is virtual mailbox plugin only
meant to create a virtual inbox, or should I be able to have an
Allmails virtual folder that is viewable in my imap client? if
~/virtual/ is my location, would I create an Allmails directory in the
virtual/ or virtual/INBOX/Allmails. Im fairly confused on how this is
suppose to work. I was trying to duplicate the gmail-like
2009 May 06
2
"Broken mailbox list" with virtual plugin
Hi,
I'm using the virtual plugin for a virtual inbox (with dovecot 1.2, r8980),
whose dovecot-virtual file looks as follows:
INBOX
INBOX/Lists
INBOX/Bulk
INBOX/MaybeSpam
Folders/TODO
all
Everything seems to work fine, but I get the following error in my logfiles:
IMAP(matthijs): virtual /home/matthijs/Mail/virtual/INBOX: Broken mailbox list
Some investigation of the source code tells me that this error means that
there was corrupt data in the index. In p...