--On Wednesday, January 10, 2001 4:13 PM +0100 Walter Steiner 
<[EMAIL PROTECTED]> wrote:

> elsif envelope :localpart :is "to" "ws+test" {
>         fileinto "INBOX.test";
>         keep;
> }
>
> (-- end of script --)
>
> Messages addressed to ws+test are saved into INBOX.test
> but there is no copy in my INBOX as expected.
>
> lmtpd[21763]: [ID 538540 local6.info] dupelim: eliminated duplicate
> message to user.ws.test id <messag-id>
>
> "to user user.ws.test" - nothing to do with the missing copy in INBOX?
>
> anyhow, how to keep a copy in inbox and in a special folder?
> (procmail c flag)

In the absence of sieve, the address 'ws+test' will naturally result in the 
message being delivering into INBOX.test, assuming all the permissions for 
'plus' delivery are setup correctly. The keep action in sieve is simply 
doing the same thing and duplicate suppression kicks in (as indicated by 
the lmtpd message). What you should probably do is:

elsif envelope :localpart :is "to" "ws+test" {
        fileinto "INBOX";
        keep;
}

That will force delivery to INBOX (fileinto) and also result in a copy in 
INBOX.test (keep).

-- 
Cyrus Daboo

Reply via email to