From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/71824 Path: news.gmane.org!not-for-mail From: Gijs Hillenius Newsgroups: gmane.emacs.gnus.general Subject: tls.el I added '--insecure' (Was :Re: [gnus git] Add ~/.authinfo to the default, since that's probably most useful for users.) Date: Sun, 26 Sep 2010 14:38:15 +0200 Organization: Using Emacs' Org Mode Message-ID: <87wrq8fzns.fsf@hillenius.net> References: <87iq238tgr.fsf@lifelogs.com> <87fwx56tau.fsf@lifelogs.com> <87fwx4h2xt.fsf@lifelogs.com> <87pqw2kn1g.fsf@hillenius.net> <87hbhd5034.fsf@lifelogs.com> <87mxr46gv9.fsf@hillenius.net> <87tylc1ygr.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1285504732 7720 80.91.229.12 (26 Sep 2010 12:38:52 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 26 Sep 2010 12:38:52 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M20197@lists.math.uh.edu Sun Sep 26 14:38:51 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OzqVF-0002gn-IU for ding-account@gmane.org; Sun, 26 Sep 2010 14:38:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1OzqV1-0005lf-Hz; Sun, 26 Sep 2010 07:38:35 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1OzqUz-0005lP-Ad for ding@lists.math.uh.edu; Sun, 26 Sep 2010 07:38:33 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1OzqUy-0008UO-5F for ding@lists.math.uh.edu; Sun, 26 Sep 2010 07:38:33 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1OzqUx-0005sd-00 for ; Sun, 26 Sep 2010 14:38:31 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OzqUs-0002d3-Dw for ding@gnus.org; Sun, 26 Sep 2010 14:38:26 +0200 Original-Received: from 158.86-136-217.adsl-dyn.isp.belgacom.be ([217.136.86.158]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 26 Sep 2010 14:38:26 +0200 Original-Received: from gijs by 158.86-136-217.adsl-dyn.isp.belgacom.be with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 26 Sep 2010 14:38:26 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 37 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 158.86-136-217.adsl-dyn.isp.belgacom.be X-Operating-System: Debian GNU/Linux Sid X-Homepage: http://www.hillenius.net/ X-GPGP-Fingerprint: 0D0B 9C67 0520 3B27 A91C 369B 7154 1B0A 04CF 3929 User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:ZBigd5ldPk6q1epoaUWBmiy0msw= X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:71824 Archived-At: On 26 Sep 2010, Ted Zlatanov wrote: [...] > > GH> In *Messages* I get: > > GH> Opening TLS connection to `mail.hillenius.net'... > GH> Opening TLS connection with `gnutls-cli -p imaps mail.hillenius.net'...failed > GH> Opening TLS connection with `gnutls-cli -p imaps mail.hillenius.net --protocols ssl3'...failed > GH> Opening TLS connection with `openssl s_client -connect mail.hillenius.net:imaps -no_ssl2 -ign_eof'...done Thanks Ted, for your explanation. I decided to change the tls.el file that comes with this gnus, adding a changing this line: ,---- | (defcustom tls-program '("gnutls-cli -p %p %h" `---- into ,---- | (defcustom tls-program '("gnutls-cli --insecure -p %p %h" `---- and byte-compile & load it. That "fixed" my `gnutls-cli -p imaps mail.hillenius.net'...error. Which means that now I'm back to my bigger problem, understanding why my gcc is not yet working.