From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/11122 Path: news.gmane.org!not-for-mail From: din Newsgroups: gmane.emacs.gnus.user Subject: imap not working fine Date: Wed, 11 Jun 2008 00:36:32 -0700 (PDT) Organization: http://groups.google.com Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1213417412 8382 80.91.229.12 (14 Jun 2008 04:23:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 14 Jun 2008 04:23:32 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Sat Jun 14 06:24:15 2008 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.50) id 1K7NJG-00063e-W6 for gegu-info-gnus-english@m.gmane.org; Sat, 14 Jun 2008 06:24:15 +0200 Original-Received: from localhost ([127.0.0.1]:48484 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K7NIS-0005Ul-Lj for gegu-info-gnus-english@m.gmane.org; Sat, 14 Jun 2008 00:23:24 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!x1g2000prh.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 74 Original-NNTP-Posting-Host: 125.19.42.35 Original-X-Trace: posting.google.com 1213169792 31171 127.0.0.1 (11 Jun 2008 07:36:32 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Wed, 11 Jun 2008 07:36:32 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: x1g2000prh.googlegroups.com; posting-host=125.19.42.35; posting-account=hNC68QoAAACIsVKWO6pk9APtR8jV_4QG User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3,gzip(gfe),gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.gnus:81340 X-Mailman-Approved-At: Sat, 14 Jun 2008 00:22:01 -0400 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:11122 Archived-At: I have used the following command to connect to the imap server through gnus: (require 'nnimap) (require 'ssl) (setq imap-ssl-program "openssl s_client -ssl3 -quiet -connect %s:%p") (setq imap-authinfo-file (expand-file-name "~/.authinfo")) (setq imap-debug "*imap-debug*") (setq gnus-secondary-select-methods '((nnml "private") (nnimap "MyMail" (nnimap-address "zin10.grapper.net") (nnimap-server-port 143) (nnimap-list-pattern ("INBOX*")) (nnimap-authenticator login) (nnimap-stream ssl) (nnimap-expunge-on-close 'always) ) )) I get following message: (/usr/local/bin/emacs) Loading tool-bar...done Loading image...done Loading tooltip...done For information about the GNU Project and its goals, type C-h C-p. Loading gnus... Loading easymenu...done Loading gnus...done Loading gnus-start...done [2 times] Wrote /mot/dineshb/.newsrc-dribble Reading /mot/dineshb/.newsrc.eld... Opening nntp server on newshost... Denied server Reading active file from private via nnml... Opening nnml server on private... nnml: Reading incoming mail from file... nnml: Reading incoming mail (no new mail)...done Reading active file from private via nnml...done Reading active file from MyMail via nnimap... Opening nnimap server on MyMail... imap: Opening IMAP connection with openssl s_client -ssl3 -quiet - connect %s:%p -ssl3... Loading cl-macs...done imap: Opening IMAP connection with openssl s_client -ssl3 -quiet - connect %s:%p -ssl2... Loading gnus-cache...done Opening nntp server on newshost... Denied server Checking new news... Opening nndraft server... Checking new news...done Loading edmacro...done No gnus is bad news No more unread newsgroups Making completion list... Loading view...done Also when I run the following openssl command openssl s_client -ssl3 -connect zin10.grapper.net:143 I get this result: CONNECTED(00000004) 36933:error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number:s3_pkt.c:286: So Is it Gnus problem or the openssl problem? Also the same imap is working fine with evolution...