From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/14086 Path: news.gmane.org!not-for-mail From: adamsonj@email.unc.edu (Joel J. Adamson) Newsgroups: gmane.emacs.gnus.user Subject: Force STARTTLS connection with IMAP Date: Sun, 26 Sep 2010 16:14:24 -0400 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2032315092==" X-Trace: dough.gmane.org 1285532115 17015 80.91.229.12 (26 Sep 2010 20:15:15 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 26 Sep 2010 20:15:15 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Sun Sep 26 22:15:13 2010 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Ozxcu-0001mo-NM for gegu-info-gnus-english@m.gmane.org; Sun, 26 Sep 2010 22:15:13 +0200 Original-Received: from localhost ([127.0.0.1]:51395 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ozxct-0006Aj-Id for gegu-info-gnus-english@m.gmane.org; Sun, 26 Sep 2010 16:15:11 -0400 Original-Received: from [140.186.70.92] (port=53655 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ozxcn-00068q-0c for info-gnus-english@gnu.org; Sun, 26 Sep 2010 16:15:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OzxcW-0003P7-OJ for info-gnus-english@gnu.org; Sun, 26 Sep 2010 16:14:49 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:54071) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OzxcW-0003P0-9D for info-gnus-english@gnu.org; Sun, 26 Sep 2010 16:14:48 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OzxcS-0001dD-Q7 for info-gnus-english@gnu.org; Sun, 26 Sep 2010 22:14:44 +0200 Original-Received: from cpe-066-057-100-048.nc.res.rr.com ([66.57.100.48]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 26 Sep 2010 22:14:44 +0200 Original-Received: from adamsonj by cpe-066-057-100-048.nc.res.rr.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 26 Sep 2010 22:14:44 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 73 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: cpe-066-057-100-048.nc.res.rr.com User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:9oPfgF1x6KQ99cV8LVVODb4HKnU= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:14086 Archived-At: --===============2032315092== Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hello Fellow Gnusers, I have the following .gnus.el on two machines running Emacs from bzr[1] on Fedora 13, connecting to a university IMAP server (Cyrus IMAP): (setq gnus-select-method '(nntp "news.gwene.org")) (setq imap-default-user "adamsonj") ;; gnus customization file (setq gnus-secondary-select-methods '((nnimap "UNC" (nnimap-address "imap.unc.edu") (nnimap-server-port 143)))) (setq gnus-message-archive-method (car gnus-secondary-select-methods)) (setq gnus-message-archive-group "nnimap+UNC:INBOX.Sent") (setq gnus-gcc-mark-as-read t) Note that I have not specified `nnimap-stream'. On my campus workstation I see a slew of messages as Gnus tries to connect, which settles on "Connecting with STARTTLS..." and everything proceeds according to plan (i.e. Gnus connects, downloads messages, etc). On my home machine (off-campus), however I get Opening nnimap server on UNC... Opening TLS connection to `imap.unc.edu'... Opening TLS connection with `gnutls-cli -p 143 imap.unc.edu'...failed Opening TLS connection with `gnutls-cli -p 143 imap.unc.edu --protocols ssl= 3'...failed Opening TLS connection with `openssl s_client -connect imap.unc.edu:143 -no= _ssl2 -ign_eof'...done and then nothing happens (Emacs just sits there with no blinking cursor). My question is why doesn't the machine at home go through the same set of protocols, and why does it arrive at a different solution? Is there a way to force it to use STARTTLS? I tried specifying (nnimap-stream starttls) and it does exactly the same thing as when I leave it unspecified. Evolution connects flawlessly from home. Thanks for any help, Joel Footnotes:=20 [1] GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.20.1) of 2010-09-25=20 =2D-=20 Joel J. Adamson -- http://www.unc.edu/~adamsonj University of North Carolina at Chapel Hill CB #3280, Coker Hall Chapel Hill, NC 27599-3280 --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (GNU/Linux) iEYEARECAAYFAkyfqacACgkQdjuynxXap4SOTACeI9C+LN5qTpyiPoqfs+bZvbP1 /NAAn0eea+/+cCOjoLCGI+2O7yo8chHj =FC+w -----END PGP SIGNATURE----- --=-=-=-- --===============2032315092== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ info-gnus-english mailing list info-gnus-english@gnu.org http://lists.gnu.org/mailman/listinfo/info-gnus-english --===============2032315092==--