From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/36651 Path: main.gmane.org!not-for-mail From: NAGY Andras Newsgroups: gmane.emacs.gnus.general Subject: two imap.el patches Date: 19 Jun 2001 13:31:28 +0200 Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035172200 9669 80.91.224.250 (21 Oct 2002 03:50:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:50:00 +0000 (UTC) Return-Path: Return-Path: Original-Received: (qmail 5051 invoked from network); 19 Jun 2001 11:31:30 -0000 Original-Received: from mail.inf.elte.hu (157.181.161.6) by gnus.org with SMTP; 19 Jun 2001 11:31:30 -0000 Original-Received: by mail.inf.elte.hu (Postfix, from userid 28535) id 9495581FF; Tue, 19 Jun 2001 13:31:28 +0200 (CEST) Original-To: ding@gnus.org Mail-Copies-To: nobody User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.1 (Biscayne) Original-Lines: 22 Xref: main.gmane.org gmane.emacs.gnus.general:36651 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:36651 --=-=-= * http://www.gnus.org/list-archives/ding/200102/msg00282.html The patch for imtest.c mentioned in this thread has been incorporated into Cyrus-IMAP 2.0.14, so I suggest applying the relevant Gnus patch as well. (Or maybe a modified version, which provides an option to choose between the pty and the pipe communication methods.) --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=imap.el.patch-pty diff -u -r6.8 imap.el --- imap.el 2001/06/03 10:10:50 6.8 +++ imap.el 2001/06/19 11:12:56 @@ -511,6 +511,7 @@ (let* ((port (or port imap-default-port)) (coding-system-for-read imap-coding-system-for-read) (coding-system-for-write imap-coding-system-for-write) + (process-connection-type nil) (process (start-process name buffer shell-file-name shell-command-switch (format-spec --=-=-= * http://www.gnus.org/list-archives/ding/200012/msg00414.html It seems to me this has not been applied yet. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=imap.el.patch-quiet diff -u -r6.3 imap.el --- imap.el 2000/12/19 22:18:56 6.3 +++ imap.el 2000/12/30 16:06:56 @@ -188,10 +188,10 @@ :group 'imap :type '(repeat string)) -(defcustom imap-ssl-program '("openssl s_client -ssl3 -connect %s:%p" - "openssl s_client -ssl2 -connect %s:%p" - "s_client -ssl3 -connect %s:%p" - "s_client -ssl2 -connect %s:%p") +(defcustom imap-ssl-program '("openssl s_client -quiet -ssl3 -connect %s:%p" + "openssl s_client -quiet -ssl2 -connect %s:%p" + "s_client -ssl3 -quiet -connect %s:%p" + "s_client -ssl2 -quiet -connect %s:%p") "A string, or list of strings, containing commands for SSL connections. Within a string, %s is replaced with the server address and %p with port number on server. The program should accept IMAP commands on --=-=-= Andras --=-=-=--