Re: variables extension redux

Kjetil Torgrim Homme <kjetilho@ifi.uio.no> Sat, 31 July 2004 19:36 UTC

Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6VJaUhJ089104; Sat, 31 Jul 2004 12:36:30 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6VJaUPR089103; Sat, 31 Jul 2004 12:36:30 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from pat.uio.no (IDENT:7411@pat.uio.no [129.240.130.16]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6VJaTRq089096 for <ietf-mta-filters@imc.org>; Sat, 31 Jul 2004 12:36:30 -0700 (PDT) (envelope-from kjetilho@ifi.uio.no)
Received: from mail-mx2.uio.no ([129.240.10.30]) by pat.uio.no with esmtp (Exim 4.34) id 1Bqzeg-0006cP-Cx for ietf-mta-filters@imc.org; Sat, 31 Jul 2004 21:36:30 +0200
Received: from [80.203.78.108] (helo=chico.njus.no) by smtp.uio.no with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1Bqzed-0000d2-0Y for ietf-mta-filters@imc.org; Sat, 31 Jul 2004 21:36:27 +0200
Subject: Re: variables extension redux
From: Kjetil Torgrim Homme <kjetilho@ifi.uio.no>
To: ietf-mta-filters@imc.org
In-Reply-To: <1091294499.14516.68.camel@chico.njus.no>
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com> <410A69EA.1090008@isode.com> <1091294499.14516.68.camel@chico.njus.no>
Content-Type: text/plain; charset="ISO-8859-1"
Date: Sat, 31 Jul 2004 21:34:54 +0200
Message-Id: <1091302494.14516.121.camel@chico.njus.no>
Mime-Version: 1.0
X-Mailer: Evolution 1.5.9
X-MailScanner-Information: This message has been scanned for viruses/spam. Contact postmaster@uio.no if you have questions about this scanning
X-UiO-MailScanner: No virus found
X-UiO-Spam-info: not spam, SpamAssassin (score=0, required 12)
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by above.proper.com id i6VJaURq089098
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 lør, 2004-07-31 at 19:21 +0200, Kjetil Torgrim Homme wrote:

>      a related question is what happens when a match fails.  the draft
>      currently says that the numeric variables are reset, but this may
>      be inconvenient.
> 
> [this is irrelevant if we use SETMATCH]

I wasn't thinking clearly when I wrote that, sorry ...  the SETMATCH
doesn't remove the need for implicit state, it just limits the access to
that implicit state to places in the grammar which allow actions.

a contrived example:

  if allof (address :matches "To" "ietf-*@*",
            not address :matches "To" "ietf-mta-filters@*") { ...

consider a To containing "ietf-mta-wars".  the first test is a success,
the second is not.  the implicit state is thus cleared, and we can't get
at the domain even if the allof test is successful.  neither can we get
at the "mta-wars" part.  in this case, reversing the ordering of the
tests solves the problem, so it's not hard to work around it.

on the other hand: in Perl, an unsuccessful match does not change the
implicit state.  I'm not aware of any other languages with implicit
state in this manner.  in the origin of this, sed, the scope of \1 is
restricted to the substitute operation it's used in.

one useful recipe if state is _not_ reset, is testing for fallback:

  if match-test1 { do-stuff1 }
  if match-test2 { do-stuff2 }
  if string "${0}" "0" {
     # this is true if neither match-test1 nor match-test2 were true.
     # sometimes match-test1 and match-test2 aren't mutually exclusive,
     # so if ... {} else if ... {} else ... {} isn't appropriate.
  }

of course, the programmer can use an explicit flag variable in each of
do-stuff1 and do-stuff2 instead, but I believe this will make the idiom
harder to recognise for a GUI editor.


getting back to SETMATCH, it makes accessing ${0} inconvenient to say
the least, so the above hack can't be used.  (the first match may well
be a zero-length string.)

it also requires the following example to be rewritten into nested if
tests:

  if allof (header :matches "List-ID" "*<*@example.com>*",
            address :localpart "To" "${2}") {
      ...
  }

it becomes:

  if header :matches "List-ID" "*<*@example.com>*" {
	setmatch ["", "listname"]
        if address :localpart "To" "${listname} {
             ...
        }
  }

I don't see this as a bad thing, really.

-- 
Kjetil T.




Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6VJaUhJ089104; Sat, 31 Jul 2004 12:36:30 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6VJaUPR089103; Sat, 31 Jul 2004 12:36:30 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from pat.uio.no (IDENT:7411@pat.uio.no [129.240.130.16]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6VJaTRq089096 for <ietf-mta-filters@imc.org>; Sat, 31 Jul 2004 12:36:30 -0700 (PDT) (envelope-from kjetilho@ifi.uio.no)
Received: from mail-mx2.uio.no ([129.240.10.30]) by pat.uio.no with esmtp (Exim 4.34) id 1Bqzeg-0006cP-Cx for ietf-mta-filters@imc.org; Sat, 31 Jul 2004 21:36:30 +0200
Received: from [80.203.78.108] (helo=chico.njus.no) by smtp.uio.no with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1Bqzed-0000d2-0Y for ietf-mta-filters@imc.org; Sat, 31 Jul 2004 21:36:27 +0200
Subject: Re: variables extension redux
From: Kjetil Torgrim Homme <kjetilho@ifi.uio.no>
To: ietf-mta-filters@imc.org
In-Reply-To: <1091294499.14516.68.camel@chico.njus.no>
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com>  <410A69EA.1090008@isode.com> <1091294499.14516.68.camel@chico.njus.no>
Content-Type: text/plain; charset=ISO-8859-1
Date: Sat, 31 Jul 2004 21:34:54 +0200
Message-Id: <1091302494.14516.121.camel@chico.njus.no>
Mime-Version: 1.0
X-Mailer: Evolution 1.5.9 
X-MailScanner-Information: This message has been scanned for viruses/spam. Contact postmaster@uio.no if you have questions about this scanning
X-UiO-MailScanner: No virus found
X-UiO-Spam-info: not spam, SpamAssassin (score=0, required 12)
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by above.proper.com id i6VJaURq089098
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 lør, 2004-07-31 at 19:21 +0200, Kjetil Torgrim Homme wrote:

>      a related question is what happens when a match fails.  the draft
>      currently says that the numeric variables are reset, but this may
>      be inconvenient.
> 
> [this is irrelevant if we use SETMATCH]

I wasn't thinking clearly when I wrote that, sorry ...  the SETMATCH
doesn't remove the need for implicit state, it just limits the access to
that implicit state to places in the grammar which allow actions.

a contrived example:

  if allof (address :matches "To" "ietf-*@*",
            not address :matches "To" "ietf-mta-filters@*") { ...

consider a To containing "ietf-mta-wars".  the first test is a success,
the second is not.  the implicit state is thus cleared, and we can't get
at the domain even if the allof test is successful.  neither can we get
at the "mta-wars" part.  in this case, reversing the ordering of the
tests solves the problem, so it's not hard to work around it.

on the other hand: in Perl, an unsuccessful match does not change the
implicit state.  I'm not aware of any other languages with implicit
state in this manner.  in the origin of this, sed, the scope of \1 is
restricted to the substitute operation it's used in.

one useful recipe if state is _not_ reset, is testing for fallback:

  if match-test1 { do-stuff1 }
  if match-test2 { do-stuff2 }
  if string "${0}" "0" {
     # this is true if neither match-test1 nor match-test2 were true.
     # sometimes match-test1 and match-test2 aren't mutually exclusive,
     # so if ... {} else if ... {} else ... {} isn't appropriate.
  }

of course, the programmer can use an explicit flag variable in each of
do-stuff1 and do-stuff2 instead, but I believe this will make the idiom
harder to recognise for a GUI editor.


getting back to SETMATCH, it makes accessing ${0} inconvenient to say
the least, so the above hack can't be used.  (the first match may well
be a zero-length string.)

it also requires the following example to be rewritten into nested if
tests:

  if allof (header :matches "List-ID" "*<*@example.com>*",
            address :localpart "To" "${2}") {
      ...
  }

it becomes:

  if header :matches "List-ID" "*<*@example.com>*" {
	setmatch ["", "listname"]
        if address :localpart "To" "${listname} {
             ...
        }
  }

I don't see this as a bad thing, really.

-- 
Kjetil T.




Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6VHNMV0081945; Sat, 31 Jul 2004 10:23:22 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6VHNMNx081944; Sat, 31 Jul 2004 10:23:22 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from pat.uio.no (IDENT:7411@pat.uio.no [129.240.130.16]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6VHNL8J081936 for <ietf-mta-filters@imc.org>; Sat, 31 Jul 2004 10:23:22 -0700 (PDT) (envelope-from kjetilho@ifi.uio.no)
Received: from mail-mx2.uio.no ([129.240.10.30]) by pat.uio.no with esmtp (Exim 4.34) id 1BqxZn-00054f-Mr; Sat, 31 Jul 2004 19:23:19 +0200
Received: from [80.203.78.108] (helo=chico.njus.no) by smtp.uio.no with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1BqxZl-0001n5-E5; Sat, 31 Jul 2004 19:23:17 +0200
Subject: variables extension redux
From: Kjetil Torgrim Homme <kjetilho@ifi.uio.no>
To: Alexey Melnikov <Alexey.Melnikov@isode.com>
Cc: ietf-mta-filters@imc.org
In-Reply-To: <410A69EA.1090008@isode.com>
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com>  <410A69EA.1090008@isode.com>
Content-Type: text/plain
Date: Sat, 31 Jul 2004 19:21:39 +0200
Message-Id: <1091294499.14516.68.camel@chico.njus.no>
Mime-Version: 1.0
X-Mailer: Evolution 1.5.9 
Content-Transfer-Encoding: 7bit
X-MailScanner-Information: This message has been scanned for viruses/spam. Contact postmaster@uio.no if you have questions about this scanning
X-UiO-MailScanner: No virus found
X-UiO-Spam-info: not spam, SpamAssassin (score=0, required 12)
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 fre, 2004-07-30 at 16:31 +0100, Alexey Melnikov wrote:
> If this helps to get Sieve variables published (I am being selfish here, 
> of course :-)), than I agree.

I'm sorry, but I've lost track.  what should be done about it?  there
are some open issues in it, but they don't seem very hard problems,
really.  I apologise if I have left out criticisms, it is not
intentional, my memory isn't so good.

=== excerpt ===
0.3.  Open Issues

b)   this extension is particularily useful if fileinto creates new
     folders on demand.  [SIEVE] doesn't prohibit this, and currently
     some implementations will create new folders automatically, others
     won't.

[out of scope, an explicit :createfolder for fileinto should be a
separate extension.  this can be closed.]

d)   the EDITHEADER draft includes an action that needs the unexpanded
     string to be passed to the procedure, since the action first per-
     forms matching which may influence numeric variable references in
     the argument.  this is can be seen as a layering violation, and the
     variable draft should state explicitly whether such extensions are
     possible.

e)   the numeric variables are causing many headaches since they may
     change spontaneously when running tests or even _during_ actions.
     an alternative approach is SETMATCH ["var1", "var2", "var3"] which
     stores the first three match components into the listed variables.
     (an empty string as a variable name means skip storing that match.)
     this approach makes REPLACEHEADER less powerful.

[this is a big change to the draft, but I think it makes the semantics
clearer and reduces the chances of pitfalls.  the REPLACEHEADER magic
was too magic, IMHO (it was removed from the draft anyway, but someone
else may want something similar in the future)]

     a related question is what happens when a match fails.  the draft
     currently says that the numeric variables are reset, but this may
     be inconvenient.

[this is irrelevant if we use SETMATCH]
=== ends ===

I can submit a "new" draft to refresh the expiry in a couple of days,
but if we can get these issues resolved first, that would be great.

-- 
Kjetil T.



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6VDjOKk069795; Sat, 31 Jul 2004 06:45:59 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6VDjOWn069794; Sat, 31 Jul 2004 06:45:24 -0700 (PDT)
X-Authentication-Warning: above.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 above.proper.com (8.12.11/8.12.9) with SMTP id i6VDjH9R069785 for <ietf-mta-filters@imc.org>; Sat, 31 Jul 2004 06:45:24 -0700 (PDT) (envelope-from mem@mv.mv.com)
Received: (qmail 1487 invoked by uid 101); 31 Jul 2004 09:45:17 -0400
From: "Mark E. Mallett" <mem@mv.mv.com>
Date: Sat, 31 Jul 2004 09:45:17 -0400
To: Cyrus Daboo <daboo@cyrusoft.com>
Cc: ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
Message-ID: <20040731134517.GD1022@osmium.mv.net>
References: <E431C40901E12A44AECB09A4@ninevah.cyrusoft.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <E431C40901E12A44AECB09A4@ninevah.cyrusoft.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>

[Dang, this might have been worth going to San Diego for]

On Fri, Jul 30, 2004 at 12:00:32PM -0400, Cyrus Daboo wrote:
> 
> To that end it might be useful to tabulate the number of client/server 
> implementations of the existing draft extensions, so that we can get an 
> idea of which ones need to be worked on sooner rather than later. I would 
> be happy to add that info to my informal draft status list if folks want to 
> send me that information privately or on the list. All I would need to know 
> is what extension 'require' keyword is used and whether its used by a sieve 
> server (script parser) or client (script generator).

There's also Matthew Elvey's page at:

  http://wiki.fastmail.fm/wiki/index.php/SieveExtensionsSupportMatrix

mm



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UHkbB8082782; Fri, 30 Jul 2004 10:46:37 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UHkbJc082781; Fri, 30 Jul 2004 10:46:37 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from darius.cyrusoft.com (darius.cyrusoft.com [63.163.82.2]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UHkaJn082775 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 10:46:36 -0700 (PDT) (envelope-from daboo@cyrusoft.com)
Received: from ninevah.cyrusoft.com (ninevah.cyrusoft.com [63.163.82.9]) (authenticated bits=0) by darius.cyrusoft.com (8.12.9/8.12.9) with ESMTP id i6UHXUo3023698 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 30 Jul 2004 13:33:31 -0400
Date: Fri, 30 Jul 2004 13:46:38 -0400
From: Cyrus Daboo <daboo@cyrusoft.com>
To: ietf-mta-filters@imc.org
cc: Ned Freed <ned.freed@mrochek.com>
Subject: Working Group
Message-ID: <D41AE4F30E5D378509A64467@ninevah.cyrusoft.com>
X-Mailer: Mulberry/4.0.0d1 (Mac OS X)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
X-Spam-Status: No, hits=0.0 tests=none
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>

It does appear that there is a lot of support for having a working group 
for SIEVE, and I think we should move forward and contact the ADs and see 
what they have to say. Perhaps we should invite them to the lunch meeting, 
or maybe this issue could be brought up at the Apps area meeting? I suspect 
Ned can suggest the best way to proceed...


-- 
Cyrus Daboo



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UHUpeY081742; Fri, 30 Jul 2004 10:30:51 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UHUpj6081741; Fri, 30 Jul 2004 10:30:51 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from foon.sendmail.com (tls.sendmail.com [209.246.26.40]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UHUobw081735 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 10:30:50 -0700 (PDT) (envelope-from jutta@sendmail.com)
Received: from jutta.sendmail.com ([10.210.202.45]) by foon.sendmail.com (Switch-3.1.6/Switch-3.1.6) with ESMTP id i6UHUoVG017987; Fri, 30 Jul 2004 10:30:51 -0700
Received: by jutta.sendmail.com (Postfix, from userid 500) id D4A26179A4; Fri, 30 Jul 2004 10:30:34 -0700 (PDT)
Date: Fri, 30 Jul 2004 10:30:33 -0700
From: Jutta Degener <jutta@sendmail.com>
To: ned.freed@mrochek.com
Cc: Alexey Melnikov <Alexey.Melnikov@isode.com>, Tony Hansen <tony@att.com>, ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
Message-ID: <20040730173032.GB1419@jutta.sendmail.com>
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <01LD2BQIJGJS00005R@mauve.mrochek.com>
User-Agent: Mutt/1.3.24i
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 Fri, Jul 30, 2004 at 07:26:32AM -0700, ned.freed@mrochek.com wrote:
> >Tony Hansen wrote:
> 
> >> Any interest in having a lunch bof or bar bof in San Diego to discuss
> >> the various sieve extensions that are currently extant?
> >>
> >> I'd like to suggest meeting at lunchtime on Wednesday or Thursday.
> 
> >Sounds good, but I am only available for Wednesday lunch.
> 
> Wednesday lunch works for me.

I'll be there all week, and Wednesday lunch works as well.
(And aye on the working group.)

Jutta <jutta@sendmail.com>



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UH0sBK079325; Fri, 30 Jul 2004 10:00:54 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UH0sZr079324; Fri, 30 Jul 2004 10:00:54 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from mauve.mrochek.com (mauve.mrochek.com [209.55.107.55]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UH0rah079318 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 10:00:53 -0700 (PDT) (envelope-from ned.freed@mrochek.com)
Received: from mauve.mrochek.com by mauve.mrochek.com (PMDF V6.1-1 #35243) id <01LCZOEQR08G00005R@mauve.mrochek.com> for ietf-mta-filters@imc.org; Fri, 30 Jul 2004 10:00:56 -0700 (PDT)
Date: Fri, 30 Jul 2004 09:59:45 -0700 (PDT)
From: ned.freed@mrochek.com
Subject: Re: Drafts and status
In-reply-to: "Your message dated Fri, 30 Jul 2004 12:01:28 -0400 (EDT)" <Pine.LNX.4.60-041.0407301200370.23552@webiso1.andrew.cmu.edu>
To: Rob Siemborski <rjs3@andrew.cmu.edu>
Cc: Cyrus Daboo <daboo@cyrusoft.com>, IETF MTA Filters List <ietf-mta-filters@imc.org>
Message-id: <01LD2H4KGEEA00005R@mauve.mrochek.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=us-ascii; format=flowed
Content-transfer-encoding: 7BIT
References: <028A32A00698445B2892AA74@ninevah.cyrusoft.com> <Pine.LNX.4.60-041.0407301200370.23552@webiso1.andrew.cmu.edu>
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 Fri, 30 Jul 2004, Cyrus Daboo wrote:

> > draft-martin-managesieve-04.txt
> >
> >       Draft has EXPIRED. Ned (then AD) sent comments to the list on
> >       12-Nov-2003. These have yet to be addressed. There was also an
> >       issue with interaction with include extension. I think its up
> >       to the CMU folks to move this forward...

> I've sent email to Tim several times asking him to either fix the draft or
> send me the source so that I can take it over, and neither has happened.

> Is there a fast way to convert an ID into nroff or XML source?

Not that I know of. I've always done it manually, usually while sitting
in airport departure lounges.

				Ned



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UGrl3g078897; Fri, 30 Jul 2004 09:53:47 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UGrlnt078895; Fri, 30 Jul 2004 09:53:47 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from darius.cyrusoft.com (darius.cyrusoft.com [63.163.82.2]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UGrjki078889 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 09:53:46 -0700 (PDT) (envelope-from daboo@cyrusoft.com)
Received: from ninevah.cyrusoft.com (ninevah.cyrusoft.com [63.163.82.9]) (authenticated bits=0) by darius.cyrusoft.com (8.12.9/8.12.9) with ESMTP id i6UGeco3022470 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 30 Jul 2004 12:40:39 -0400
Date: Fri, 30 Jul 2004 12:53:46 -0400
From: Cyrus Daboo <daboo@cyrusoft.com>
To: ned.freed@mrochek.com
cc: ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
Message-ID: <C6EED9E8D11EADAF78FEDD69@ninevah.cyrusoft.com>
In-Reply-To: <01LD2FRREJQU00005R@mauve.mrochek.com>
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com> <B781C670453E328B16183095@ninevah.cyrusoft.com> <01LD2FRREJQU00005R@mauve.mrochek.com>
X-Mailer: Mulberry/4.0.0d1 (Mac OS X)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
X-Spam-Status: No, hits=0.0 tests=none
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>

Hi ned.freed@mrochek.com,

--On Friday, July 30, 2004 9:14 AM -0700 ned.freed@mrochek.com wrote:

>
>> --On Friday, July 30, 2004 8:18 AM -0700 ned.freed@mrochek.com wrote:
>
>> >> That suits me too. I will shortly post a list of drafts and their
>> >> status here so we can see what needs to be discussed.
>> >
>> > Random thought: Perhaps it is time to consider forming a sieve
>> > working group. The goals of the group would be carefullly limited to:
>> >
>> > (1) Progressing the base sieve specification to draft. (Note that this
>> >     means no significant changes or additions.)
>> >
>> > (2) Finishing various sieve I-Ds already on the table.
>> >
>> > What do people think about the idea?
>
>> I've been thinking the same thing myself. I think getting to draft status
>> is a worthy effort and probably is best done under the auspices of a WG.
>> Other extensions that have wide deployment right now also ought to be
>> part of any WG charter.
>
> Absolutely. FWIW, the two that concern me most are the two Vs: Vacation
> and variables. The first has been around way too long, and the second is
> way too useful.
>

Agreed.

> Do you think the managesieve stuff would also be appropriate?

I think there are enough implementations (both server and client) around to 
warrant this. Perhaps if others are considering doing implementations they 
could let us known as that might tip the balance for adding it to any WG 
charter. Is suspect there really isn't a lot of work involved in 
progressing the draft.

>> My only issue with draft status is whether all the normative references
>> are also at draft. The current SIEVE RFC pre-dates the
>> normative/non-normative references split. However it does look like all
>> the relevant ones are at draft so we ought to be OK.
>
> The problematic one is going to be ACAP. I would plan to ask for an
> exception for that one - it is to the comparator registry, and it can be
> argued that the registry is really an IANA/BCP sort of thing even though
> it appears in a proposed standard RFC. I do think the registry reference
> is normative, however - you need to know what the comparators do in order
> to build a sieve interpreter.

Remember that ACAP failed to actually (officially) create the registry. 
Chris Newman's i18n-comparator draft is supposed to do that:

<http://www.ietf.org/internet-drafts/draft-newman-i18n-comparator-02.txt>

So perhaps that is what we have to end up referencing. That does have 
normative references to stringprep and nameprep amoungst others. Sadly this 
might be what delays SIEVE getting to draft...

> P.S. I'm going to try to have some review comments in hand by the Wed
> meeting on the various drafts. Hopefully others can do the same and we
> can collect an open issues/corrections list.

I'll try to do the same - should be time enough on the flight over...


-- 
Cyrus Daboo



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UGQrkw077122; Fri, 30 Jul 2004 09:26:53 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UGQrnJ077121; Fri, 30 Jul 2004 09:26:53 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from palrel13.hp.com (palrel13.hp.com [156.153.255.238]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UGQrvj077113 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 09:26:53 -0700 (PDT) (envelope-from mganesh@india.hp.com)
Received: from iconsrv6.india.hp.com (iconsrv6.india.hp.com [15.42.227.74]) by palrel13.hp.com (Postfix) with ESMTP id B91511C05544; Fri, 30 Jul 2004 09:26:52 -0700 (PDT)
Received: from india.hp.com (nt23060.india.hp.com [15.42.230.60]) by iconsrv6.india.hp.com (8.9.3 (PHNE_29774)/8.9.3 SMKit7.02) with ESMTP id VAA09209; Fri, 30 Jul 2004 21:57:20 +0530 (IST)
Message-ID: <410A76CC.30101@india.hp.com>
Date: Fri, 30 Jul 2004 21:56:52 +0530
From: Madan Ganesh Velayudham <mganesh@india.hp.com>
User-Agent: Mozilla Thunderbird 0.5 (X11/20040208)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: Cyrus Daboo <daboo@cyrusoft.com>
Cc: IETF MTA Filters List <ietf-mta-filters@imc.org>
Subject: Re: Drafts and status
References: <028A32A00698445B2892AA74@ninevah.cyrusoft.com>
In-Reply-To: <028A32A00698445B2892AA74@ninevah.cyrusoft.com>
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
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>

Thanks Cyrus,

 > draft-madanganeshv-sieve-remove-attach-00.txt
 >
 >        Draft has EXPIRED. Some comments on the list back in February. 
This
 >        too may have overlap with 'mime' and 'loop' extensions.
 >
 > draft-madanganeshv-sieve-stat-01.txt
 >
 >        Draft still active. Some comments on the list back in February.
 >

I will be not attending this IETF. Will update it and discuss thru Jabber.

Thanks
MG

-- 
            Madan Ganesh Velayudham  +91 80 2205 3108
-------------------------------------------------------------
Nothing in life is to be feared.  It is only to be understood.



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UGMLPH076913; Fri, 30 Jul 2004 09:22:21 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UGMLQ6076912; Fri, 30 Jul 2004 09:22:21 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from mauve.mrochek.com (mauve.mrochek.com [209.55.107.55]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UGMK4B076906 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 09:22:20 -0700 (PDT) (envelope-from ned.freed@mrochek.com)
Received: from mauve.mrochek.com by mauve.mrochek.com (PMDF V6.1-1 #35243) id <01LCZOEQR08G00005R@mauve.mrochek.com> for ietf-mta-filters@imc.org; Fri, 30 Jul 2004 09:22:22 -0700 (PDT)
Date: Fri, 30 Jul 2004 09:14:55 -0700 (PDT)
From: ned.freed@mrochek.com
Subject: Re: lunch/bar bof for mta-filters?
In-reply-to: "Your message dated Fri, 30 Jul 2004 11:56:43 -0400" <B781C670453E328B16183095@ninevah.cyrusoft.com>
To: Cyrus Daboo <daboo@cyrusoft.com>
Cc: ned.freed@mrochek.com, Alexey Melnikov <Alexey.Melnikov@isode.com>, Tony Hansen <tony@att.com>, ietf-mta-filters@imc.org
Message-id: <01LD2FRREJQU00005R@mauve.mrochek.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=us-ascii; format=flowed
Content-transfer-encoding: 7BIT
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com> <B781C670453E328B16183095@ninevah.cyrusoft.com>
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 Friday, July 30, 2004 8:18 AM -0700 ned.freed@mrochek.com wrote:

> >> That suits me too. I will shortly post a list of drafts and their status
> >> here so we can see what needs to be discussed.
> >
> > Random thought: Perhaps it is time to consider forming a sieve
> > working group. The goals of the group would be carefullly limited to:
> >
> > (1) Progressing the base sieve specification to draft. (Note that this
> >     means no significant changes or additions.)
> >
> > (2) Finishing various sieve I-Ds already on the table.
> >
> > What do people think about the idea?

> I've been thinking the same thing myself. I think getting to draft status
> is a worthy effort and probably is best done under the auspices of a WG.
> Other extensions that have wide deployment right now also ought to be part
> of any WG charter.

Absolutely. FWIW, the two that concern me most are the two Vs: Vacation and
variables. The first has been around way too long, and the second is way too
useful.

Do you think the managesieve stuff would also be appropriate?

> My only issue with draft status is whether all the normative references are
> also at draft. The current SIEVE RFC pre-dates the normative/non-normative
> references split. However it does look like all the relevant ones are at
> draft so we ought to be OK.

The problematic one is going to be ACAP. I would plan to ask for an exception
for that one - it is to the comparator registry, and it can be argued that the
registry is really an IANA/BCP sort of thing even though it appears in a
proposed standard RFC. I do think the registry reference is normative, however
- you need to know what the comparators do in order to build a sieve
interpreter.

> I am also interested in knowing if there is any interaction with marid/asrg
> that we ought to consider (e.g. SIEVE tests for SPF-type information that
> can be used for additional filtering). Having an official WG may help with
> determining that.

Agreed, although the MARID group has a number of really serious problems to
contend with that may make it difficult to get their attention no matter what
(and perhaps rightly so). I mean, when Richard Stallman is posting to the list
(and being told by the chairs that the discussion isn't approrpiate), you know
there's a situation.

				Ned

P.S. I'm going to try to have some review comments in hand by the Wed meeting
on the various drafts. Hopefully others can do the same and we can collect an
open issues/corrections list.



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UG1TGX075580; Fri, 30 Jul 2004 09:01:29 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UG1Txk075579; Fri, 30 Jul 2004 09:01:29 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from smtp-test.andrew.cmu.edu (SMTP-TEST.andrew.cmu.edu [128.2.6.59]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UG1Stb075573 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 09:01:28 -0700 (PDT) (envelope-from rjs3@andrew.cmu.edu)
Received: from WEBISO1.andrew.cmu.edu (WEBISO1.andrew.cmu.edu [128.2.11.31]) (user=rjs3 mech=GSSAPI (0 bits)) by smtp-test.andrew.cmu.edu (8.12.10/8.12.10) with ESMTP id i6UG1TXL010309; Fri, 30 Jul 2004 12:01:29 -0400
Date: Fri, 30 Jul 2004 12:01:28 -0400 (EDT)
From: Rob Siemborski <rjs3@andrew.cmu.edu>
To: Cyrus Daboo <daboo@cyrusoft.com>
cc: IETF MTA Filters List <ietf-mta-filters@imc.org>
Subject: Re: Drafts and status
In-Reply-To: <028A32A00698445B2892AA74@ninevah.cyrusoft.com>
Message-ID: <Pine.LNX.4.60-041.0407301200370.23552@webiso1.andrew.cmu.edu>
References: <028A32A00698445B2892AA74@ninevah.cyrusoft.com>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
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 Fri, 30 Jul 2004, Cyrus Daboo wrote:

> draft-martin-managesieve-04.txt
>
>       Draft has EXPIRED. Ned (then AD) sent comments to the list on
>       12-Nov-2003. These have yet to be addressed. There was also an
>       issue with interaction with include extension. I think its up
>       to the CMU folks to move this forward...

I've sent email to Tim several times asking him to either fix the draft or 
send me the source so that I can take it over, and neither has happened.

Is there a fast way to convert an ID into nroff or XML source?

-Rob

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Rob Siemborski | Andrew Systems Group * Research Systems Programmer
PGP:0x5CE32FCC | Cyert Hall 207 * rjs3@andrew.cmu.edu * 412.268.7456
-----BEGIN GEEK CODE BLOCK----
Version: 3.12
GCS/IT/CM/PA d- s+: a-- C++++$ ULS++++$ P+++$ L+++ E W+ N(-) o? K- w-- O-
M-- V-- PS+ PE+ Y+ PGP+ t+@ 5+++ X- R@ tv-- b+ DI+++ D++ G e++ h+ r- y?
------END GEEK CODE BLOCK-----



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UG1OIU075562; Fri, 30 Jul 2004 09:01:24 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UG1OG7075561; Fri, 30 Jul 2004 09:01:24 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from rufus.isode.com (rufus.isode.com [62.3.217.251]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UG1Me8075555 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 09:01:23 -0700 (PDT) (envelope-from Alexey.Melnikov@isode.com)
Received: from isode.com (shiny.isode.com [62.3.217.250]) by rufus.isode.com  via TCP (internal) with ESMTPA; Fri, 30 Jul 2004 17:05:01 +0100
Message-ID: <410A70C9.4060500@isode.com>
Date: Fri, 30 Jul 2004 17:01:13 +0100
From: Alexey Melnikov <Alexey.Melnikov@isode.com>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)
X-Accept-Language: en-us, en
To: Cyrus Daboo <daboo@cyrusoft.com>
CC: IETF MTA Filters List <ietf-mta-filters@imc.org>
Subject: Re: Drafts and status
References: <028A32A00698445B2892AA74@ninevah.cyrusoft.com>
In-Reply-To: <028A32A00698445B2892AA74@ninevah.cyrusoft.com>
MIME-version: 1.0
Content-type: text/plain; charset="ISO-8859-1"; format="flowed"
Content-transfer-encoding: 7bit
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>

Cyrus Daboo wrote:

> Hi folks,
> Here is a list of current SIEVE drafts and their status as far as I 
> can tell. Please let me know if I have missed any or if any of the 
> information below is incorrect.
>
> draft-melnikov-sieve-imapflags-06.txt
>
>        Open issues remain. Rob sent message to list 24-Feb-2004 proposing
>        some changes. No further discussion. I believe there are 
> several implementations
>        of this.

This draft depends on Sieve variable, which is the major issue.




Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UG0X4K075495; Fri, 30 Jul 2004 09:00:33 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UG0XHE075494; Fri, 30 Jul 2004 09:00:33 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from darius.cyrusoft.com (darius.cyrusoft.com [63.163.82.2]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UG0W2v075488 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 09:00:33 -0700 (PDT) (envelope-from daboo@cyrusoft.com)
Received: from ninevah.cyrusoft.com (ninevah.cyrusoft.com [63.163.82.9]) (authenticated bits=0) by darius.cyrusoft.com (8.12.9/8.12.9) with ESMTP id i6UFlPo3020863 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 11:47:26 -0400
Date: Fri, 30 Jul 2004 12:00:32 -0400
From: Cyrus Daboo <daboo@cyrusoft.com>
To: ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
Message-ID: <E431C40901E12A44AECB09A4@ninevah.cyrusoft.com>
X-Mailer: Mulberry/4.0.0d1 (Mac OS X)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii; FORMAT=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
X-Spam-Status: No, hits=0.0 tests=none
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>

Hi Simon,

--On Friday, July 30, 2004 5:42 PM +0200 Simon Josefsson <jas@extundo.com> 
wrote:

> Having done multiple implementations of it, I have some
> vested interest in it.
>

To that end it might be useful to tabulate the number of client/server 
implementations of the existing draft extensions, so that we can get an 
idea of which ones need to be worked on sooner rather than later. I would 
be happy to add that info to my informal draft status list if folks want to 
send me that information privately or on the list. All I would need to know 
is what extension 'require' keyword is used and whether its used by a sieve 
server (script parser) or client (script generator).

-- 
Cyrus Daboo



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFwUUJ075345; Fri, 30 Jul 2004 08:58:30 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UFwUi8075344; Fri, 30 Jul 2004 08:58:30 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from smtp-test.andrew.cmu.edu (SMTP-TEST.andrew.cmu.edu [128.2.6.59]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFwTR0075337 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 08:58:29 -0700 (PDT) (envelope-from rjs3@andrew.cmu.edu)
Received: from WEBISO1.andrew.cmu.edu (WEBISO1.andrew.cmu.edu [128.2.11.31]) (user=rjs3 mech=GSSAPI (0 bits)) by smtp-test.andrew.cmu.edu (8.12.10/8.12.10) with ESMTP id i6UFwVXL010285; Fri, 30 Jul 2004 11:58:31 -0400
Date: Fri, 30 Jul 2004 11:58:30 -0400 (EDT)
From: Rob Siemborski <rjs3@andrew.cmu.edu>
To: ned.freed@mrochek.com
cc: Cyrus Daboo <daboo@isamet.com>, Alexey Melnikov <Alexey.Melnikov@isode.com>, Tony Hansen <tony@att.com>, ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
In-Reply-To: <01LD2DLMRFPS00005R@mauve.mrochek.com>
Message-ID: <Pine.LNX.4.60-041.0407301157550.23552@webiso1.andrew.cmu.edu>
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
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 Fri, 30 Jul 2004 ned.freed@mrochek.com wrote:

> Random thought: Perhaps it is time to consider forming a sieve
> working group. The goals of the group would be carefullly limited to:
>
> (1) Progressing the base sieve specification to draft. (Note that this
>   means no significant changes or additions.)
>
> (2) Finishing various sieve I-Ds already on the table.
>
> What do people think about the idea?

I strongly support this idea -- I think that holding the working group 
accountable for getting the drafts published is the only way we'll ever be 
able to see any of these documents finished.

-Rob

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Rob Siemborski | Andrew Systems Group * Research Systems Programmer
PGP:0x5CE32FCC | Cyert Hall 207 * rjs3@andrew.cmu.edu * 412.268.7456
-----BEGIN GEEK CODE BLOCK----
Version: 3.12
GCS/IT/CM/PA d- s+: a-- C++++$ ULS++++$ P+++$ L+++ E W+ N(-) o? K- w-- O-
M-- V-- PS+ PE+ Y+ PGP+ t+@ 5+++ X- R@ tv-- b+ DI+++ D++ G e++ h+ r- y?
------END GEEK CODE BLOCK-----



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFukXJ075192; Fri, 30 Jul 2004 08:56:46 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UFukvc075191; Fri, 30 Jul 2004 08:56:46 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from darius.cyrusoft.com (darius.cyrusoft.com [63.163.82.2]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFuixa075185 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 08:56:45 -0700 (PDT) (envelope-from daboo@cyrusoft.com)
Received: from ninevah.cyrusoft.com (ninevah.cyrusoft.com [63.163.82.9]) (authenticated bits=0) by darius.cyrusoft.com (8.12.9/8.12.9) with ESMTP id i6UFhao3020803 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 30 Jul 2004 11:43:36 -0400
Date: Fri, 30 Jul 2004 11:56:43 -0400
From: Cyrus Daboo <daboo@cyrusoft.com>
To: ned.freed@mrochek.com
cc: Alexey Melnikov <Alexey.Melnikov@isode.com>, Tony Hansen <tony@att.com>, ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
Message-ID: <B781C670453E328B16183095@ninevah.cyrusoft.com>
In-Reply-To: <01LD2DLMRFPS00005R@mauve.mrochek.com>
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com>
X-Mailer: Mulberry/4.0.0d1 (Mac OS X)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
X-Spam-Status: No, hits=0.0 tests=none
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>

Hi ned,

--On Friday, July 30, 2004 8:18 AM -0700 ned.freed@mrochek.com wrote:

>> That suits me too. I will shortly post a list of drafts and their status
>> here so we can see what needs to be discussed.
>
> Random thought: Perhaps it is time to consider forming a sieve
> working group. The goals of the group would be carefullly limited to:
>
> (1) Progressing the base sieve specification to draft. (Note that this
>     means no significant changes or additions.)
>
> (2) Finishing various sieve I-Ds already on the table.
>
> What do people think about the idea?

I've been thinking the same thing myself. I think getting to draft status 
is a worthy effort and probably is best done under the auspices of a WG. 
Other extensions that have wide deployment right now also ought to be part 
of any WG charter.

My only issue with draft status is whether all the normative references are 
also at draft. The current SIEVE RFC pre-dates the normative/non-normative 
references split. However it does look like all the relevant ones are at 
draft so we ought to be OK.

I am also interested in knowing if there is any interaction with marid/asrg 
that we ought to consider (e.g. SIEVE tests for SPF-type information that 
can be used for additional filtering). Having an official WG may help with 
determining that.

-- 
Cyrus Daboo



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFodQ3074475; Fri, 30 Jul 2004 08:50:39 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UFodKR074471; Fri, 30 Jul 2004 08:50:39 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFobFW074429 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 08:50:37 -0700 (PDT) (envelope-from gim-ietf-mta-filters-902@gmane.org)
Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BqZeZ-0006Sr-00 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 17:50:39 +0200
Received: from c494102a.s-bi.bostream.se ([217.215.27.65]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 17:50:39 +0200
Received: from jas by c494102a.s-bi.bostream.se with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 17:50:39 +0200
X-Injected-Via-Gmane: http://gmane.org/
To: ietf-mta-filters@imc.org
From: Simon Josefsson <jas@extundo.com>
Subject: Re: lunch/bar bof for mta-filters?
Date: Fri, 30 Jul 2004 17:42:44 +0200
Lines: 23
Message-ID: <iluhdrp4i2z.fsf@latte.josefsson.org>
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Complaints-To: usenet@sea.gmane.org
X-Gmane-NNTP-Posting-Host: c494102a.s-bi.bostream.se
User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux)
Cancel-Lock: sha1:YUvasSk+n7DAggvPZWjRUt9Rp/I=
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>

ned.freed@mrochek.com writes:

> Random thought: Perhaps it is time to consider forming a sieve
> working group. The goals of the group would be carefullly limited to:
>
> (1) Progressing the base sieve specification to draft. (Note that this
>     means no significant changes or additions.)
>
> (2) Finishing various sieve I-Ds already on the table.
>
> What do people think about the idea?

If this would mean faster progress, I'm for it.

Would it be possible to publish the (expired?) ManageSieve protocol
draft through that venue as well?  It appear to be gaining users,
albeit slowly.  I believe it is a better solution than any of the
other solutions that has been proposed, and that it deserve
publication.  Having done multiple implementations of it, I have some
vested interest in it.

Thanks,
Simon



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFdHii073456; Fri, 30 Jul 2004 08:39:17 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UFdHYf073455; Fri, 30 Jul 2004 08:39:17 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from darius.cyrusoft.com (darius.cyrusoft.com [63.163.82.2]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFdHqP073449 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 08:39:17 -0700 (PDT) (envelope-from daboo@cyrusoft.com)
Received: from ninevah.cyrusoft.com (ninevah.cyrusoft.com [63.163.82.9]) (authenticated bits=0) by darius.cyrusoft.com (8.12.9/8.12.9) with ESMTP id i6UFQAo3020523 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 11:26:12 -0400
Date: Fri, 30 Jul 2004 11:39:17 -0400
From: Cyrus Daboo <daboo@cyrusoft.com>
To: IETF MTA Filters List <ietf-mta-filters@imc.org>
Subject: Drafts and status
Message-ID: <028A32A00698445B2892AA74@ninevah.cyrusoft.com>
X-Mailer: Mulberry/4.0.0d1 (Mac OS X)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
X-Spam-Status: No, hits=0.0 tests=none
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>

Hi folks,
Here is a list of current SIEVE drafts and their status as far as I can 
tell. Please let me know if I have missed any or if any of the information 
below is incorrect.

draft-melnikov-sieve-imapflags-06.txt

        Open issues remain. Rob sent message to list 24-Feb-2004 proposing
        some changes. No further discussion. I believe there are several 
implementations
        of this.

draft-showalter-sieve-vacation-05.txt

        Draft is in 'DEAD' state in  ID-tracker. This needs to be addressed.
        Ned (then AD) sent comments to the list on 25-Jan-2004. These have
        yet to be addressed. There is really not much that needs doing to
        this so we ought to get it out soon. There are many implementations 
of this around.

draft-murchison-sieve-regex-07.txt

        Draft has EXPIRED. Last set of open issues were to do with i18n and
        back references. There are several implementations of this around.

draft-martin-managesieve-04.txt

        Draft has EXPIRED. Ned (then AD) sent comments to the list on
        12-Nov-2003. These have yet to be addressed. There was also an
        issue with interaction with include extension. I think its up
        to the CMU folks to move this forward...

draft-martin-sieve-notify-02.txt

        Draft has EXPIRED. No recent activity on the list.

draft-degener-sieve-body-02.txt

        Draft still active. There seem to be several implementations of 
this around.

draft-daboo-sieve-include-02.txt

        Draft still active. Recent update published. I know of one 
implementation to date.

draft-homme-sieve-variables-02.txt

        Draft has EXPIRED. No recent activity on the list.

draft-degener-sieve-multiscript-01.txt

        Draft has EXPIRED. No recent activity on the list.

draft-degener-sieve-editheader-01.txt

        Draft still active. Some comments on the list back in January.

draft-degener-sieve-copy-03.txt

        Draft still active. Recent update published. Ned (then AD) sent
        comments to the list in January. He indicated the draft was very
        close to being done.

draft-elvey-refuse-sieve-02.txt

        Draft still active. Some comments on the list back in May.

draft-daboo-sieve-mime-00.txt

        Draft still active. Several comments after initial publication in
        March. Possible overlap with Tony's 'loop' extension. More
        discussion required.

draft-madanganeshv-sieve-remove-attach-00.txt

        Draft has EXPIRED. Some comments on the list back in February. This
        too may have overlap with 'mime' and 'loop' extensions.

draft-madanganeshv-sieve-stat-01.txt

        Draft still active. Some comments on the list back in February.

draft-hansen-sieve-loop-00.txt

        Draft recently posted. Recent discussion about overlap with 'mime'
        extension. More discussion required.



-- 
Cyrus Daboo



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFW3cR072616; Fri, 30 Jul 2004 08:32:03 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UFW3b1072615; Fri, 30 Jul 2004 08:32:03 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from rufus.isode.com (rufus.isode.com [62.3.217.251]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFW234072609 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 08:32:02 -0700 (PDT) (envelope-from Alexey.Melnikov@isode.com)
Received: from isode.com (shiny.isode.com [62.3.217.250]) by rufus.isode.com  via TCP (internal) with ESMTPA; Fri, 30 Jul 2004 16:35:41 +0100
Message-ID: <410A69EA.1090008@isode.com>
Date: Fri, 30 Jul 2004 16:31:54 +0100
From: Alexey Melnikov <Alexey.Melnikov@isode.com>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)
X-Accept-Language: en-us, en
To: ned.freed@mrochek.com
CC: ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com> <01LD2DLMRFPS00005R@mauve.mrochek.com>
In-Reply-To: <01LD2DLMRFPS00005R@mauve.mrochek.com>
MIME-version: 1.0
Content-type: text/plain; charset="ISO-8859-1"; format="flowed"
Content-transfer-encoding: 7bit
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>

ned.freed@mrochek.com wrote:

> Random thought: Perhaps it is time to consider forming a sieve
> working group. The goals of the group would be carefullly limited to:
>
> (1) Progressing the base sieve specification to draft. (Note that this
>    means no significant changes or additions.)
>
> (2) Finishing various sieve I-Ds already on the table.
>
> What do people think about the idea? 

If this helps to get Sieve variables published (I am being selfish here, 
of course :-)), than I agree.

Alexey




Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFK8xo071219; Fri, 30 Jul 2004 08:20:08 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UFK82D071218; Fri, 30 Jul 2004 08:20:08 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from mauve.mrochek.com (mauve.mrochek.com [209.55.107.55]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UFK8TM071212 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 08:20:08 -0700 (PDT) (envelope-from ned.freed@mrochek.com)
Received: from mauve.mrochek.com by mauve.mrochek.com (PMDF V6.1-1 #35243) id <01LCZOEQR08G00005R@mauve.mrochek.com> for ietf-mta-filters@imc.org; Fri, 30 Jul 2004 08:20:09 -0700 (PDT)
Date: Fri, 30 Jul 2004 08:18:20 -0700 (PDT)
From: ned.freed@mrochek.com
Subject: Re: lunch/bar bof for mta-filters?
In-reply-to: "Your message dated Fri, 30 Jul 2004 10:59:12 -0400" <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com>
To: Cyrus Daboo <daboo@isamet.com>
Cc: ned.freed@mrochek.com, Alexey Melnikov <Alexey.Melnikov@isode.com>, Tony Hansen <tony@att.com>, ietf-mta-filters@imc.org
Message-id: <01LD2DLMRFPS00005R@mauve.mrochek.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=us-ascii; format=flowed
Content-transfer-encoding: 7BIT
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com> <01LD2BQIJGJS00005R@mauve.mrochek.com> <DE7ECAB67967A5AD90985C42@plato.cyrusoft.com>
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>

> Hi ned.freed@mrochek.com,

> --On Friday, July 30, 2004 7:26 AM -0700 ned.freed@mrochek.com wrote:

> >> Sounds good, but I am only available for Wednesday lunch.
> >
> > Wednesday lunch works for me.

> That suits me too. I will shortly post a list of drafts and their status
> here so we can see what needs to be discussed.

Random thought: Perhaps it is time to consider forming a sieve
working group. The goals of the group would be carefullly limited to:

(1) Progressing the base sieve specification to draft. (Note that this
    means no significant changes or additions.)

(2) Finishing various sieve I-Ds already on the table.

What do people think about the idea?

				Ned



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UF04fm069517; Fri, 30 Jul 2004 08:00:04 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UF04N0069516; Fri, 30 Jul 2004 08:00:04 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from darius.cyrusoft.com (darius.cyrusoft.com [63.163.82.2]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UF03t9069509 for <ietf-mta-filters@mail.imc.org>; Fri, 30 Jul 2004 08:00:03 -0700 (PDT) (envelope-from daboo@cyrusoft.com)
Received: from plato.cyrusoft.com (plato.cyrusoft.com [63.163.82.23]) (authenticated bits=0) by darius.cyrusoft.com (8.12.9/8.12.9) with ESMTP id i6UEkvo3019737 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <ietf-mta-filters@mail.imc.org>; Fri, 30 Jul 2004 10:46:57 -0400
Date: Fri, 30 Jul 2004 11:02:32 -0400
From: Cyrus Daboo <daboo@cyrusoft.com>
To: ietf-mta-filters@mail.imc.org
Subject: Re: Vacation draft
Message-ID: <6F40015E5CE95755F7F1E9BE@plato.cyrusoft.com>
X-Mailer: Mulberry/4.0.0d1 (Win32)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii; FORMAT=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
X-Spam-Status: No, hits=0.0 tests=none
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>

Hi Michael,

--On Friday, July 30, 2004 11:36 AM +0200 Michael Haardt 
<michael@freenet-ag.de> wrote:

> As I noticed, the draft ist expired.  Any plans to bring it back?

Unfortunately this document appears to be in a sorry state:

<https://datatracker.ietf.org/public/pidtracker.cgi?command=view_id&dTag=3116&rfc_flag=0>

We need to get this published. If Tim is unable to do the updates then we 
need to assign a new author and move it forward asap. I would be willing to 
do that if needs be.

-- 
Cyrus Daboo



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UExhOH069475; Fri, 30 Jul 2004 07:59:43 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UExhJn069474; Fri, 30 Jul 2004 07:59:43 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from darius.cyrusoft.com (darius.cyrusoft.com [63.163.82.2]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UExfe4069466 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 07:59:42 -0700 (PDT) (envelope-from daboo@cyrusoft.com)
Received: from plato.cyrusoft.com (plato.cyrusoft.com [63.163.82.23]) (authenticated bits=0) by darius.cyrusoft.com (8.12.9/8.12.9) with ESMTP id i6UEkao3019725 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 10:46:36 -0400
Date: Fri, 30 Jul 2004 11:02:11 -0400
From: Cyrus Daboo <daboo@cyrusoft.com>
To: ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
Message-ID: <3A934F151C63C14F7A93880A@plato.cyrusoft.com>
X-Mailer: Mulberry/4.0.0d1 (Win32)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii; FORMAT=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
X-Spam-Status: No, hits=0.0 tests=none
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 Friday, July 30, 2004 7:26 AM -0700 ned.freed@mrochek.com wrote:

>> Sounds good, but I am only available for Wednesday lunch.
>
> Wednesday lunch works for me.

That suits me too. I will shortly post a list of drafts and their status 
here so we can see what needs to be discussed.

-- 
Cyrus Daboo



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UEQotR067536; Fri, 30 Jul 2004 07:26:50 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UEQo62067535; Fri, 30 Jul 2004 07:26:50 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from mauve.mrochek.com (mauve.mrochek.com [209.55.107.55]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UEQoSN067528 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 07:26:50 -0700 (PDT) (envelope-from ned.freed@mrochek.com)
Received: from mauve.mrochek.com by mauve.mrochek.com (PMDF V6.1-1 #35243) id <01LCZOEQR08G00005R@mauve.mrochek.com> for ietf-mta-filters@imc.org; Fri, 30 Jul 2004 07:26:49 -0700 (PDT)
Date: Fri, 30 Jul 2004 07:26:32 -0700 (PDT)
From: ned.freed@mrochek.com
Subject: Re: lunch/bar bof for mta-filters?
In-reply-to: "Your message dated Fri, 30 Jul 2004 14:48:44 +0100" <410A51BC.10606@isode.com>
To: Alexey Melnikov <Alexey.Melnikov@isode.com>
Cc: Tony Hansen <tony@att.com>, ietf-mta-filters@imc.org
Message-id: <01LD2BQIJGJS00005R@mauve.mrochek.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=us-ascii; format=flowed
Content-transfer-encoding: 7BIT
References: <4109DDAE.2040803@att.com> <410A51BC.10606@isode.com>
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>

> Tony Hansen wrote:

> > Any interest in having a lunch bof or bar bof in San Diego to discuss
> > the various sieve extensions that are currently extant?
> >
> > I'd like to suggest meeting at lunchtime on Wednesday or Thursday.

> Sounds good, but I am only available for Wednesday lunch.

Wednesday lunch works for me.

				Ned



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UDog1e064986; Fri, 30 Jul 2004 06:50:42 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UDogDm064985; Fri, 30 Jul 2004 06:50:42 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from rufus.isode.com (rufus.isode.com [62.3.217.251]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UDofdf064978 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 06:50:41 -0700 (PDT) (envelope-from Alexey.Melnikov@isode.com)
Received: from isode.com (shiny.isode.com [62.3.217.250]) by rufus.isode.com  via TCP (internal) with ESMTPA; Fri, 30 Jul 2004 14:52:31 +0100
Message-ID: <410A51BC.10606@isode.com>
Date: Fri, 30 Jul 2004 14:48:44 +0100
From: Alexey Melnikov <Alexey.Melnikov@isode.com>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: Tony Hansen <tony@att.com>
CC: ietf-mta-filters@imc.org
Subject: Re: lunch/bar bof for mta-filters?
References: <4109DDAE.2040803@att.com>
In-Reply-To: <4109DDAE.2040803@att.com>
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
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>

Tony Hansen wrote:

> Any interest in having a lunch bof or bar bof in San Diego to discuss 
> the various sieve extensions that are currently extant?
>
> I'd like to suggest meeting at lunchtime on Wednesday or Thursday. 

Sounds good, but I am only available for Wednesday lunch.

Alexey




Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UDnOVZ064916; Fri, 30 Jul 2004 06:49:24 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UDnOGv064915; Fri, 30 Jul 2004 06:49:24 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from almso1.proxy.att.com (almso1.att.com [192.128.167.69]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UDnNnf064904 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 06:49:23 -0700 (PDT) (envelope-from tony@att.com)
Received: from maillennium.att.com ([135.25.114.99]) by almso1.proxy.att.com (AT&T IPNS/MSO-5.5) with ESMTP id i6UDnKJ4009465 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 09:49:20 -0400
Received: from [135.210.81.60] (unknown[135.210.81.60](misconfigured sender)) by maillennium.att.com (mailgw1) with ESMTP id <20040730134923gw1002euh1e> (Authid: tony); Fri, 30 Jul 2004 13:49:23 +0000
Message-ID: <410A51DF.5050802@att.com>
Date: Fri, 30 Jul 2004 09:49:19 -0400
From: Tony Hansen <tony@att.com>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: Nigel Swinson <Nigel@Swinson.com>
CC: ietf-mta-filters@imc.org
Subject: Re: I-D ACTION:draft-hansen-sieve-loop-00.txt]
References: <4109DCC0.5020707@att.com> <005e01c47625$fde5cd60$6501a8c0@nigelhome>
In-Reply-To: <005e01c47625$fde5cd60$6501a8c0@nigelhome>
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
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>

Nigel Swinson wrote:

> Hi Tony,
> 
> Just read your new I-Draft and it seems to be solving some of the 
> same problems that the draft-daboo-sieve-mime-00.txt draft is trying
> to solve, so it seems like the two should probably be worked on
> together.
 >
 > But I made an alternative proposal in response that seemed to have a
 > lot of support although was never written up into a new draft. You
 > can read my response here and follow the replies:
 > http://www.imc.org/ietf-mta-filters/mail-archive/msg02238.html

I agree - there is some overlap between our drafts, as well as with your 
ideas. I'll have to review the thread you pointed me to.

	Tony Hansen
	tony@att.com



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UB98LH052814; Fri, 30 Jul 2004 04:09:08 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6UB98Pw052813; Fri, 30 Jul 2004 04:09:08 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from vementry.enterprise.ucs.ed.ac.uk (vementry.enterprise.ucs.ed.ac.uk [129.215.200.96]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6UB95xi052787 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 04:09:07 -0700 (PDT) (envelope-from Nigel@swinson.com)
Received: from nigelhome (unverified [82.41.75.235]) by vementry.enterprise.ucs.ed.ac.uk (Rockliffe SMTPRA 6.0.11) with ESMTP id <B0000015289@vementry.enterprise.ucs.ed.ac.uk>; Fri, 30 Jul 2004 12:08:54 +0100
Message-ID: <005e01c47625$fde5cd60$6501a8c0@nigelhome>
From: "Nigel Swinson" <Nigel@Swinson.com>
To: "Tony Hansen" <tony@att.com>
Cc: <ietf-mta-filters@imc.org>
References: <4109DCC0.5020707@att.com>
Subject: Re: I-D ACTION:draft-hansen-sieve-loop-00.txt]
Date: Fri, 30 Jul 2004 12:11:41 +0100
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2800.1437
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by above.proper.com id i6UB98xi052807
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>

Hi Tony,

Just read your new I-Draft and it seems to be solving some of the same problems that the draft-daboo-sieve-mime-00.txt draft is trying to solve, so it seems like the two should probably be worked on together.  

The original draft is here:  http://www.ietf.org/internet-drafts/draft-daboo-sieve-mime-00.txt

But I made an alternative proposal in response that seemed to have a lot of support although was never written up into a new draft.  You can read my response here and follow the replies:  http://www.imc.org/ietf-mta-filters/mail-archive/msg02238.html

My proposal for a HEADER-PART tagged argument to the header does mostly the same job as your part test with :filename/:type/:subtype approach, and my :bodyparts optional argument does mostly the same job as your for.every.part loop test.  However the proposal does not include facilities for replace/delete/enclosing body parts.

I think my proposal allows significant extra message matching capabilities with less additional syntax, so I think it would be good if we could go with testing syntax more along the lines of what has already been proposed there.

Perhaps there's really two I-Drafts at play here, a written up version of my proposal for testing body parts, and then an additional one specifying the ability to replace/delete/enclose body parts which requires a "select" body part concept.  Maybe a foreach test, that is used instead of "if".  Then where you have:

   for.every.part {
       if anyof ( part :subtype :is "jpeg", part :filename :matches "*.jpg" {
           replace "Attachment removed by user filter";
       }
   }


We'd have this instead:

   foreach anyof :bodyparts (header :value :matches "Content-Type" "*/jpeg" ,
                                              header :parameter "filename" :matches "Content-Disposition" "*.jpg" ) {
       replace "Attachment removed by user filter";
   }

Cyrus, I expected you'd re-release the draft-daboo-sieve-mime-00.txt I-Draft encorporating all the feedback but don't see a version 01.txt.  Should I do this?

Nigel



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6U9abHW023774; Fri, 30 Jul 2004 02:36:37 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6U9abKY023772; Fri, 30 Jul 2004 02:36:37 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from mout0.freenet.de (mout0.freenet.de [194.97.50.131]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6U9aZot023722 for <ietf-mta-filters@mail.imc.org>; Fri, 30 Jul 2004 02:36:36 -0700 (PDT) (envelope-from michael@freenet-ag.de)
Received: from [194.97.55.191] (helo=mx7.freenet.de) by mout0.freenet.de with asmtp (Exim 4.41) id 1BqToT-0005Rf-LP for ietf-mta-filters@mail.imc.org; Fri, 30 Jul 2004 11:36:29 +0200
Received: from nostromo.freenet-ag.de ([194.97.7.6]) by mx7.freenet.de with esmtp (TLSv1:AES256-SHA:256) (Exim 4.41 #1) id 1BqToT-0004o3-KJ for ietf-mta-filters@mail.imc.org; Fri, 30 Jul 2004 11:36:29 +0200
Received: from michael by nostromo.freenet-ag.de with local (ID michael) (Exim 4.41 #7) id 1BqToT-0001rL-58 for ietf-mta-filters@mail.imc.org; Fri, 30 Jul 2004 11:36:29 +0200
To: ietf-mta-filters@mail.imc.org
Subject: Vacation draft
Message-Id: <E1BqToT-0001rL-58@nostromo.freenet-ag.de>
From: Michael Haardt <michael@freenet-ag.de>
Date: Fri, 30 Jul 2004 11:36:29 +0200
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>

I have two comments to the section security considerations:

Sending out an automated reply with "Re: " and the subject is dangerous.
Many mailing lists verify the mail address by sending a mail with a key
in the subject.  Simply replying to such a mail confirms you want to
subscribe to it.  If people use vacation, it is easy to subscribe them
to a spam list and prove that it *is* opt-in by keeping the confirmation
and throwing away the original faked subscription request.

Mail systems should be allowed to bypass the time if the database to
remember senders becomes too large.  I suggest to allow the implementation
to expire entries if the number of different senders becomes too big.
The draft could set a minimum database size. Say 100 or 1000 different
senders must be remembered, but implementations may store more.

As I noticed, the draft ist expired.  Any plans to bring it back?

Michael



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6U5XYs9014362; Thu, 29 Jul 2004 22:33:34 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6U5XYt4014361; Thu, 29 Jul 2004 22:33:34 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from ckmso2.proxy.att.com (ckmso2.att.com [209.219.209.75]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6U5XX8X014299 for <ietf-mta-filters@imc.org>; Thu, 29 Jul 2004 22:33:33 -0700 (PDT) (envelope-from tony@att.com)
Received: from maillennium.att.com ([135.25.114.99]) by ckmso2.proxy.att.com (AT&T IPNS/MSO-5.5) with ESMTP id i6U5XZ9Q015145 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 01:33:35 -0400
Received: from [135.210.81.60] (unknown[135.210.81.60](misconfigured sender)) by maillennium.att.com (mailgw1) with ESMTP id <20040730053338gw1002eu5ve> (Authid: tony); Fri, 30 Jul 2004 05:33:38 +0000
Message-ID: <4109DDAE.2040803@att.com>
Date: Fri, 30 Jul 2004 01:33:34 -0400
From: Tony Hansen <tony@att.com>
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4) Gecko/20011022 Netscape6/6.2
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: ietf-mta-filters@imc.org
Subject: lunch/bar bof for mta-filters?
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
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>

Any interest in having a lunch bof or bar bof in San Diego to discuss 
the various sieve extensions that are currently extant?

I'd like to suggest meeting at lunchtime on Wednesday or Thursday.

	Tony Hansen
	tony@att.com



Received: from above.proper.com (localhost.vpnc.org [127.0.0.1]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6U5Tftk011690; Thu, 29 Jul 2004 22:29:41 -0700 (PDT) (envelope-from owner-ietf-mta-filters@mail.imc.org)
Received: (from majordom@localhost) by above.proper.com (8.12.11/8.12.9/Submit) id i6U5Tf6I011689; Thu, 29 Jul 2004 22:29:41 -0700 (PDT)
X-Authentication-Warning: above.proper.com: majordom set sender to owner-ietf-mta-filters@mail.imc.org using -f
Received: from kcmso2.proxy.att.com (kcmso2.att.com [192.128.134.71]) by above.proper.com (8.12.11/8.12.9) with ESMTP id i6U5Te4x011641 for <ietf-mta-filters@imc.org>; Thu, 29 Jul 2004 22:29:40 -0700 (PDT) (envelope-from tony@att.com)
Received: from maillennium.att.com ([135.25.114.99]) by kcmso2.proxy.att.com (AT&T IPNS/MSO-5.5) with ESMTP id i6U5TbrJ011503 for <ietf-mta-filters@imc.org>; Fri, 30 Jul 2004 00:29:42 -0500
Received: from [135.210.81.60] (unknown[135.210.81.60](misconfigured sender)) by maillennium.att.com (mailgw1) with ESMTP id <20040730052940gw1002eu5te> (Authid: tony); Fri, 30 Jul 2004 05:29:40 +0000
Message-ID: <4109DCC0.5020707@att.com>
Date: Fri, 30 Jul 2004 01:29:36 -0400
From: Tony Hansen <tony@att.com>
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4) Gecko/20011022 Netscape6/6.2
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: ietf-mta-filters@imc.org
Subject: [Fwd: I-D ACTION:draft-hansen-sieve-loop-00.txt]
Content-Type: multipart/mixed; boundary="------------070309090000060105030300"
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>

This is a multi-part message in MIME format.
--------------070309090000060105030300
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

This was supposed to be announced to the mta-filters list by the I-D 
editor, but wasn't.

	Tony Hansen
	tony@att.com

--------------070309090000060105030300
Content-Type: message/rfc822;
 name="I-D ACTION:draft-hansen-sieve-loop-00.txt"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="I-D ACTION:draft-hansen-sieve-loop-00.txt"

Received: from attrh2i.attrh.att.com ([135.37.94.56])
          by maillennium.att.com (mailgw1) with ESMTP
          id <20040716211413gw100882s2e>; Fri, 16 Jul 2004 21:14:13 +0000
Received: from alpmx2.proxy.att.com (192.168.109.105) by attrh2i.attrh.att.com (7.1.006)
        id 40D5B5A30055E8D8; Fri, 16 Jul 2004 17:13:32 -0400
X-PMX-From: <i-d-announce-bounces@ietf.org>;i-d-announce-bounces@ietf.org;
X-PMX-To: 6;<gayen@att.com>;<rrroy@att.com>;<cdvorak@att.com>;<acmorton@att.com>;<meperkins@att.com>;<tony@att.com>
Received: from almsi2.proxy.att.com (almsi2.proxy.att.com [192.168.109.69])
	by alpmx2.proxy.att.com (AT&T IPNS/PMX-5.1) with ESMTP id i6GLEJ13003549;
	Fri, 16 Jul 2004 17:14:20 -0400
X-MSI-From: <i-d-announce-bounces@ietf.org>;i-d-announce-bounces@ietf.org;
X-MSI-To: 6;<tony@att.com>;<meperkins@att.com>;<acmorton@att.com>;<cdvorak@att.com>;<rrroy@att.com>;<gayen@att.com>
Received: from att.com (almsi.proxy.att.com [192.128.166.72])
	by almsi2.proxy.att.com (AT&T IPNS/MSI-5.5) with ESMTP id i6GLAe8j000944;
	Fri, 16 Jul 2004 17:14:01 -0400
Received: from megatron.ietf.org ([132.151.6.71]) by att.com (almsi) with ESMTP
          id <2004071621123200100t3tkle>; Fri, 16 Jul 2004 21:12:32 +0000
X-Originating-IP: [132.151.6.71]
Received: from localhost.localdomain ([127.0.0.1] helo=megatron.ietf.org)
	by megatron.ietf.org with esmtp (Exim 4.32)
	id 1BlZLj-0004ul-TH; Fri, 16 Jul 2004 16:30:31 -0400
Received: from odin.ietf.org ([132.151.1.176] helo=ietf.org)
	by megatron.ietf.org with esmtp (Exim 4.32) id 1BlZDs-0003ml-Dm
	for i-d-announce@megatron.ietf.org; Fri, 16 Jul 2004 16:22:24 -0400
Received: from CNRI.Reston.VA.US (localhost [127.0.0.1])
	by ietf.org (8.9.1a/8.9.1a) with ESMTP id QAA00370
	for <i-d-announce@ietf.org>; Fri, 16 Jul 2004 16:22:22 -0400 (EDT)
Message-Id: <200407162022.QAA00370@ietf.org>
Mime-Version: 1.0
Content-Type: Multipart/Mixed; Boundary="NextPart"
To: i-d-announce@ietf.org
From: Internet-Drafts@ietf.org
Date: Fri, 16 Jul 2004 16:22:22 -0400
Subject: I-D ACTION:draft-hansen-sieve-loop-00.txt
X-BeenThere: i-d-announce@ietf.org
X-Mailman-Version: 2.1.5
Precedence: list
Reply-To: internet-drafts@ietf.org
List-Id: i-d-announce.ietf.org
List-Unsubscribe: <https://www1.ietf.org/mailman/listinfo/i-d-announce>,
	<mailto:i-d-announce-request@ietf.org?subject=unsubscribe>
List-Post: <mailto:i-d-announce@ietf.org>
List-Help: <mailto:i-d-announce-request@ietf.org?subject=help>
List-Subscribe: <https://www1.ietf.org/mailman/listinfo/i-d-announce>,
	<mailto:i-d-announce-request@ietf.org?subject=subscribe>
Sender: i-d-announce-bounces@ietf.org
Errors-To: i-d-announce-bounces@ietf.org
X-ATT-Spam: Gauge=XII, Probability=12%, Report='MIME_BOUND_NEXTPART 1.085, __HAS_MSGID 0, __SANE_MSGID 0, __MIME_VERSION 0, __NEXTPART_ALL 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __TO_MALFORMED_2 0, NO_REAL_NAME 0.000, __X_BEENTHERE 0, __HAS_XOIP 0'

--NextPart

A New Internet-Draft is available from the on-line Internet-Drafts directories.


	Title		: Sieve Extension: Bodypart Loops
	Author(s)	: T. Hansen
	Filename	: draft-hansen-sieve-loop-00.txt
	Pages		: 5
	Date		: 2004-7-16
	
The current Sieve language has no looping mechanism, a way to look at
   individual parts, or any way to manipulate those individual parts.
   This document defines extensions for each of these needs.

A URL for this Internet-Draft is:
http://www.ietf.org/internet-drafts/draft-hansen-sieve-loop-00.txt

To remove yourself from the I-D Announcement list, send a message to 
i-d-announce-request@ietf.org with the word unsubscribe in the body of the message.  
You can also visit https://www1.ietf.org/mailman/listinfo/I-D-announce 
to change your subscription settings.


Internet-Drafts are also available by anonymous FTP. Login with the username
"anonymous" and a password of your e-mail address. After logging in,
type "cd internet-drafts" and then
	"get draft-hansen-sieve-loop-00.txt".

A list of Internet-Drafts directories can be found in
http://www.ietf.org/shadow.html 
or ftp://ftp.ietf.org/ietf/1shadow-sites.txt


Internet-Drafts can also be obtained by e-mail.

Send a message to:
	mailserv@ietf.org.
In the body type:
	"FILE /internet-drafts/draft-hansen-sieve-loop-00.txt".
	
NOTE:	The mail server at ietf.org can return the document in
	MIME-encoded form by using the "mpack" utility.  To use this
	feature, insert the command "ENCODING mime" before the "FILE"
	command.  To decode the response(s), you will need "munpack" or
	a MIME-compliant mail reader.  Different MIME-compliant mail readers
	exhibit different behavior, especially when dealing with
	"multipart" MIME messages (i.e. documents which have been split
	up into multiple messages), so check your local documentation on
	how to manipulate these messages.
		
		
Below is the data which will enable a MIME compliant mail reader
implementation to automatically retrieve the ASCII version of the
Internet-Draft.

--NextPart
Content-Type: Multipart/Alternative; Boundary="OtherAccess"

--OtherAccess
Content-Type: Message/External-body; access-type="mail-server";
	server="mailserv@ietf.org"

Content-Type: text/plain
Content-ID: <2004-7-16152744.I-D@ietf.org>

ENCODING mime
FILE /internet-drafts/draft-hansen-sieve-loop-00.txt

--OtherAccess
Content-Type: Message/External-body; name="draft-hansen-sieve-loop-00.txt";
	site="ftp.ietf.org"; access-type="anon-ftp";
	directory="internet-drafts"

Content-Type: text/plain
Content-ID: <2004-7-16152744.I-D@ietf.org>


--OtherAccess--

--NextPart
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
I-D-Announce mailing list
I-D-Announce@ietf.org
https://www1.ietf.org/mailman/listinfo/i-d-announce

--NextPart--




--------------070309090000060105030300--