Duplicatet mails after sieve scripts
OBATA Akio
obata at lins.jp
Wed Sep 26 08:17:57 EDT 2007
You should replace all "if" except first one with "elsif",
or remove last "else" block.
On Wed, 26 Sep 2007 14:10:47 +0900, Martin Schweizer <schweizer.martin at gmail.com> wrote:
> Hello
>
> I have sieve script which sorts some mails in different folders but I
> get now the e-mails twice. One of the copy is going in the responsable
> subfolder and the other copy is going in the INBOX. What is going
> wrong here?
>
> Here my script:
>
> require ["fileinto"];
>
> if allof (header :matches "subject" "*Ausw**") {
> fileinto "INBOX.Auswertung";
> }
>
> if allof (address :matches ["from"] "*Charlie**") {
> fileinto "INBOX.System";
> }
>
> if allof (header :matches "subject" "*Postmaster**") {
> fileinto "INBOX.Postmaster";
> }
>
> if allof (header :matches "subject" "*Cron**") {
> fileinto "INBOX.Cron";
> }
>
> if allof (address :matches ["from"] "*disks**") {
> fileinto "INBOX.Disks";
> }
>
> if allof (header :matches "subject" "*Deny**") {
> fileinto "INBOX.DenyHosts";
> }
>
> else {
> keep;
> }
>
> Any hints are welcome.
>
> Kind regards,
>
>
--
"Of course I love NetBSD":-)
OBATA Akio / obata at lins.jp
More information about the Info-cyrus
mailing list