Re: [sieve] [Technical Errata Reported] RFC6558 (5561)

NED+mta-filters@mauve.mrochek.com Mon, 26 November 2018 00:25 UTC

Return-Path: <NED+mta-filters@mauve.mrochek.com>
X-Original-To: sieve@ietfa.amsl.com
Delivered-To: sieve@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E35C1130DF7 for <sieve@ietfa.amsl.com>; Sun, 25 Nov 2018 16:25:13 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.9
X-Spam-Level:
X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_PASS=-0.001, URIBL_BLOCKED=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 5b9xZKh9C5Vm for <sieve@ietfa.amsl.com>; Sun, 25 Nov 2018 16:25:12 -0800 (PST)
Received: from mauve.mrochek.com (mauve.mrochek.com [66.218.59.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F32F812F1A5 for <sieve@ietf.org>; Sun, 25 Nov 2018 16:25:11 -0800 (PST)
Received: from dkim-sign.mauve.mrochek.com by mauve.mrochek.com (PMDF V6.1-1 #35243) id <01R02GSAVX8W001K9Q@mauve.mrochek.com> for sieve@ietf.org; Sun, 25 Nov 2018 16:20:09 -0800 (PST)
MIME-version: 1.0
Content-transfer-encoding: 7bit
Content-type: TEXT/PLAIN; CHARSET="us-ascii"
Received: from mauve.mrochek.com by mauve.mrochek.com (PMDF V6.1-1 #35243) id <01QZV379POTC00004L@mauve.mrochek.com> (original mail from NED@mauve.mrochek.com) for sieve@ietf.org; Sun, 25 Nov 2018 16:20:03 -0800 (PST)
From: NED+mta-filters@mauve.mrochek.com
Cc: RFC Editor <rfc-editor@rfc-editor.org>, Ben Campbell <ben@nostrum.com>, Adam Roach <adam@nostrum.com>, Alexey Melnikov <aamelnikov@fastmail.fm>, Sieve mailing list <sieve@ietf.org>
Message-id: <01R02GS9FGVG00004L@mauve.mrochek.com>
Date: Sun, 25 Nov 2018 16:19:57 -0800
In-reply-to: "Your message dated Sun, 25 Nov 2018 17:17:05 -0500" <CALaySJKZAzh=uTBW+C4zG0vh15mew7Z8BpCU78wzo3jBGtOWcA@mail.gmail.com>
References: <20181125215054.EFDF2B80EB8@rfc-editor.org> <CALaySJKZAzh=uTBW+C4zG0vh15mew7Z8BpCU78wzo3jBGtOWcA@mail.gmail.com>
To: Barry Leiba <barryleiba@computer.org>
Archived-At: <https://mailarchive.ietf.org/arch/msg/sieve/H35JS6Ub5Q3z1aK7AEeR5sWEN9Q>
Subject: Re: [sieve] [Technical Errata Reported] RFC6558 (5561)
X-BeenThere: sieve@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: SIEVE Working Group <sieve.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/sieve>, <mailto:sieve-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/sieve/>
List-Post: <mailto:sieve@ietf.org>
List-Help: <mailto:sieve-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/sieve>, <mailto:sieve-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Nov 2018 00:25:14 -0000

Agreed.

				Ned

> This is correct; the type should be changed to "Editorial" and the
> report marked as "Verified".

> Barry
> On Sun, Nov 25, 2018 at 4:51 PM RFC Errata System
> <rfc-editor@rfc-editor.org> wrote:
> >
> > The following errata report has been submitted for RFC6558,
> > "Sieve Extension for Converting Messages before Delivery".
> >
> > --------------------------------------
> > You may review the report below and at:
> > http://www.rfc-editor.org/errata/eid5561
> >
> > --------------------------------------
> > Type: Technical
> > Reported by: Thomas Schmid <schmid-thomas@gmx.net>
> >
> > Section: 3.2
> >
> > Original Text
> > -------------
> >        require ["mime", "fileinto", "convert"];
> >        if header :mime :anychild :contenttype
> >                  "Content-Type" "image/tiff"
> >        {
> >         if (convert "image/tiff" "image/jpeg" ["pix-x=320","pix-y=240"])
> >         {
> >          fileinto "INBOX.pics";
> >         }
> >        }
> >
> > Corrected Text
> > --------------
> >        require ["mime", "fileinto", "convert"];
> >        if header :mime :anychild :contenttype
> >                  "Content-Type" "image/tiff"
> >        {
> >         if convert "image/tiff" "image/jpeg" ["pix-x=320","pix-y=240"]
> >         {
> >          fileinto "INBOX.pics";
> >         }
> >        }
> >
> > Notes
> > -----
> > the if condition is wrapped in parentheses which is invalid sieve syntax.
> >
> > According to RFC5288 a test has to start with and alpha numerical identifier.
> >
> > Which is not true in this case. Either the parentheses need to be removed or any "anyof" or "allof" needs to be added.
> >
> > Instructions:
> > -------------
> > This erratum is currently posted as "Reported". If necessary, please
> > use "Reply All" to discuss whether it should be verified or
> > rejected. When a decision is reached, the verifying party
> > can log in to change the status and edit the report, if necessary.
> >
> > --------------------------------------
> > RFC6558 (draft-ietf-sieve-convert-06)
> > --------------------------------------
> > Title               : Sieve Extension for Converting Messages before Delivery
> > Publication Date    : March 2012
> > Author(s)           : A. Melnikov, B. Leiba, K. Li
> > Category            : PROPOSED STANDARD
> > Source              : Sieve Mail Filtering Language
> > Area                : Applications
> > Stream              : IETF
> > Verifying Party     : IESG



> --
> Barry
> --
> Barry Leiba  (barryleiba@computer.org)
> http://internetmessagingtechnology.org/

> _______________________________________________
> sieve mailing list
> sieve@ietf.org
> https://www.ietf.org/mailman/listinfo/sieve