[Extra] [Errata Verified] RFC8579 (5877)
RFC Errata System <rfc-editor@rfc-editor.org> Sat, 19 October 2019 01:55 UTC
Return-Path: <wwwrun@rfc-editor.org>
X-Original-To: extra@ietfa.amsl.com
Delivered-To: extra@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1])
by ietfa.amsl.com (Postfix) with ESMTP id A07FD12012E;
Fri, 18 Oct 2019 18:55:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.201
X-Spam-Level:
X-Spam-Status: No, score=-4.201 tagged_above=-999 required=5
tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001]
autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44])
by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024)
with ESMTP id V1bWlJAljljz; Fri, 18 Oct 2019 18:55:39 -0700 (PDT)
Received: from rfc-editor.org (rfc-editor.org [4.31.198.49])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by ietfa.amsl.com (Postfix) with ESMTPS id F18E3120020;
Fri, 18 Oct 2019 18:55:38 -0700 (PDT)
Received: by rfc-editor.org (Postfix, from userid 30)
id 2F387B80B5E; Fri, 18 Oct 2019 18:55:34 -0700 (PDT)
To: stephan.bosch@open-xchange.com, stephan.bosch@open-xchange.com
X-PHP-Originating-Script: 30:errata_mail_lib.php
From: RFC Errata System <rfc-editor@rfc-editor.org>
Cc: barryleiba@computer.org, iesg@ietf.org, extra@ietf.org,
rfc-editor@rfc-editor.org
Content-Type: text/plain; charset=UTF-8
Message-Id: <20191019015534.2F387B80B5E@rfc-editor.org>
Date: Fri, 18 Oct 2019 18:55:34 -0700 (PDT)
Archived-At: <https://mailarchive.ietf.org/arch/msg/extra/GPyhiSbdI2lvp8auA4PGu3dlx0E>
Subject: [Extra] [Errata Verified] RFC8579 (5877)
X-BeenThere: extra@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Email mailstore and eXtensions To Revise or Amend <extra.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/extra>,
<mailto:extra-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/extra/>
List-Post: <mailto:extra@ietf.org>
List-Help: <mailto:extra-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/extra>,
<mailto:extra-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 19 Oct 2019 01:55:41 -0000
The following errata report has been verified for RFC8579, "Sieve Email Filtering: Delivering to Special-Use Mailboxes". -------------------------------------- You may review the report below and at: https://www.rfc-editor.org/errata/eid5877 -------------------------------------- Status: Verified Type: Technical Reported by: Stephan Bosch <stephan.bosch@open-xchange.com> Date Reported: 2019-10-18 Verified by: Barry Leiba (IESG) Section: 6 Original Text ------------- require "imapsieve"; require "special-use"; require "environment"; require "variables"; if environment :contains "imap.mailbox" "*" { set "mailbox" ""; } if allof( environment "imap.cause" "COPY", specialuse_exists "${mailbox}" "\Junk") { redirect "spam-report@example.org".org"; } Corrected Text -------------- require "imapsieve"; require "special-use"; require "environment"; require "variables"; if environment :matches "imap.mailbox" "*" { set "mailbox" ""; } if allof( environment "imap.cause" "COPY", specialuse_exists "${mailbox}" "\Junk") { redirect "spam-report@example.org".org"; } Notes ----- The final example is using the ":contains" match type to extract a match variable, which will not work. It should use ":matches" instead. -------------------------------------- RFC8579 (draft-ietf-extra-sieve-special-use-05) -------------------------------------- Title : Sieve Email Filtering: Delivering to Special-Use Mailboxes Publication Date : May 2019 Author(s) : S. Bosch Category : PROPOSED STANDARD Source : Email mailstore and eXtensions To Revise or Amend Area : Applications and Real-Time Stream : IETF Verifying Party : IESG
- [Extra] [Errata Verified] RFC8579 (5877) RFC Errata System