From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: trunk r112923: lisp/gnus/sievel-manage.el: fully support STARTTLS, fix bit rot Date: Tue, 11 Jun 2013 03:37:27 -0400 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1370936253 26419 80.91.229.3 (11 Jun 2013 07:37:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 11 Jun 2013 07:37:33 +0000 (UTC) Cc: emacs-devel@gnu.org To: Katsumi Yamaoka Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jun 11 09:37:35 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UmJ93-0006cY-6T for ged-emacs-devel@m.gmane.org; Tue, 11 Jun 2013 09:37:33 +0200 Original-Received: from localhost ([::1]:45841 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmJ92-0003Pm-NH for ged-emacs-devel@m.gmane.org; Tue, 11 Jun 2013 03:37:32 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:55651) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmJ8z-0003PO-FV for emacs-devel@gnu.org; Tue, 11 Jun 2013 03:37:30 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UmJ8y-0003NN-EW for emacs-devel@gnu.org; Tue, 11 Jun 2013 03:37:29 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:49665) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmJ8y-0003NJ-BJ for emacs-devel@gnu.org; Tue, 11 Jun 2013 03:37:28 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1UmJ8x-0001Zr-73; Tue, 11 Jun 2013 03:37:27 -0400 X-Spook: CIA IRA mania Rand Corporation chameleon man Cohiba DRM X-Ran: J6YrjtGg![M~~D18\.3T:_5(LJYf|VRi=ExMDsUm_zbplm6NO$m[^jK5rCq6[~[EAUyA`k X-Hue: black X-Attribution: GM In-Reply-To: (Katsumi Yamaoka's message of "Tue, 11 Jun 2013 07:32:51 +0000") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:160328 Archived-At: I can't see any copyright assignment on file for this author. (Ref: http://permalink.gmane.org/gmane.emacs.gnus.general/83132 ?) Katsumi Yamaoka wrote: > +2013-06-10 Albert Krewinkel > + > + * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten > + stream managing functions by using open-protocol-stream to do most of > + the work. Has the nice benefit of enabling STARTTLS. > + Wait for capabilities after STARTTLS: following RFC5804, the server > + sends new capabilities after successfully establishing a TLS connection > + with the client. The client should update the cached list of > + capabilities, but we just ignore the answer for now. > + (sieve-manage-network-p, sieve-manage-network-open) > + (sieve-manage-starttls-p, sieve-manage-starttls-open) > + (sieve-manage-forward, sieve-manage-streams) > + (sieve-manage-stream-alist): Remove unneeded functions neither in the > + API, nor called by any other function. > + Enable Multibyte for SieveManage buffers: The parser won't properly > + handle umlauts and line endings unless multibyte is turned on in the > + process buffer.