Re: WGLC on draft-ietf-sieve-spamtestbis-03.txt

"Mark E. Mallett" <mem@mv.mv.com> Wed, 14 June 2006 20:54 UTC

Received: from balder-227.proper.com (localhost [127.0.0.1]) by balder-227.proper.com (8.13.5/8.13.5) with ESMTP id k5EKsfM1024411; Wed, 14 Jun 2006 13:54:41 -0700 (MST) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by balder-227.proper.com (8.13.5/8.13.5/Submit) id k5EKsfoA024410; Wed, 14 Jun 2006 13:54:41 -0700 (MST) (envelope-from owner-ietf-mta-filters@mail.imc.org)
X-Authentication-Warning: balder-227.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from mv.mv.com (osmium.mv.net [199.125.85.152]) by balder-227.proper.com (8.13.5/8.13.5) with SMTP id k5EKsd6o024397 for <ietf-mta-filters@imc.org>; Wed, 14 Jun 2006 13:54:40 -0700 (MST) (envelope-from mem@mv.mv.com)
Received: (qmail 7812 invoked by uid 101); 14 Jun 2006 16:54:38 -0400
From: "Mark E. Mallett" <mem@mv.mv.com>
Date: Wed, 14 Jun 2006 16:54:38 -0400
To: Alexey Melnikov <alexey.melnikov@isode.com>
Cc: ietf-mta-filters@imc.org, Cyrus Daboo <cyrus@daboo.name>
Subject: Re: WGLC on draft-ietf-sieve-spamtestbis-03.txt
Message-ID: <20060614205438.GY25816@osmium.mv.net>
References: <582B931E2A71584847BACC94@ninevah.local> <4490287F.90007@isode.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Disposition: inline
In-Reply-To: <4490287F.90007@isode.com>
User-Agent: Mutt/1.4.2.1i
Sender: owner-ietf-mta-filters@mail.imc.org
Precedence: bulk
List-Archive: <http://www.imc.org/ietf-mta-filters/mail-archive/>
List-ID: <ietf-mta-filters.imc.org>
List-Unsubscribe: <mailto:ietf-mta-filters-request@imc.org?body=unsubscribe>

On Wed, Jun 14, 2006 at 04:17:19PM +0100, Alexey Melnikov wrote:
> 
> As there were some significant changes to the document, I would like to 
> do another (1 week) WG Last Call on the document.
> Please send you comments to the mailing list and/or directly to me 
> before June 22nd 2006.

It looks good to me.

One mild thought: with the new :count thing, though, wouldn't that be the
preferred way of seeing if the test were done?  e.g. in 3.2.2:

   To determine whether the message was tested for spam or not, the
   preferred solution is to use the test without the ":percent"
   argument, testing for the normalized result value "0" as described in
   Section 3.2.1.

and a few other places and examples.


Also in 3.3, I think the second test in the example would read nicer
if it were an 'elsif' and not a plain 'if':

           if virustest :value "eq" :comparator "i;ascii-numeric" "0"
           {
               fileinto "INBOX.unclassified";
           }
 -->       if virustest :value "eq" :comparator "i;ascii-numeric" "4"
           {
               fileinto "INBOX.quarantine";
           }

not that it would cause different results, but it just strikes me as
more "pure" that way.  (picky, eh)

mm