From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85192 Path: news.gmane.org!not-for-mail From: TSUCHIYA Masatoshi Newsgroups: gmane.emacs.gnus.general Subject: Failed to open IMAP server Date: Thu, 30 Oct 2014 13:02:37 +0900 Message-ID: <87fve6mcgy.fsf@tsuchiya.vaj.namazu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1414641874 17940 80.91.229.3 (30 Oct 2014 04:04:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 30 Oct 2014 04:04:34 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M33436@lists.math.uh.edu Thu Oct 30 05:04:27 2014 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XjgyC-0002fH-4b for ding-account@gmane.org; Thu, 30 Oct 2014 05:04:20 +0100 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 1XjgxC-00018U-Un; Wed, 29 Oct 2014 23:03:19 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1XjgxB-00018I-IK for ding@lists.math.uh.edu; Wed, 29 Oct 2014 23:03:17 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1Xjgx6-0007E5-9E for ding@lists.math.uh.edu; Wed, 29 Oct 2014 23:03:16 -0500 Original-Received: from vaj.namazu.org ([202.221.179.42]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1Xjgwi-0007kt-Tq for ding@gnus.org; Thu, 30 Oct 2014 05:03:00 +0100 Original-Received: from vaj.namazu.org (vaj.namazu.org [202.221.179.42]) by vaj.namazu.org (Postfix) with ESMTP id 049AF2600D7 for ; Thu, 30 Oct 2014 13:02:44 +0900 (JST) X-Cite-Me: =?iso-2022-jp?B?GyRCRVobKEI=?= Mail-Followup-To: ding@gnus.org User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.4 (gnu/linux) X-Spam-Score: 0.2 (/) X-Spam-Report: SpamAssassin (3.3.1 2010-03-16) analysis follows Bayesian score: 0.4697 Ham tokens: 0.000-603--5780h-0s--0d--H*u:Emacs, 0.000-70--666h-0s--0d--H*u:Gnus, 0.000-70--666h-0s--0d--H*UA:Gnus, 0.000-66--624h-0s--0d--H*u:linux, 0.000-66--624h-0s--0d--H*UA:linux Spam tokens: 0.996-33684--755h-108379s--0d--H*r:quimby.gnus.org, 0.994-31594--1075h-102811s--0d--H*Ad:D*gnus.org, 0.992-26655--1161h-87536s--0d--HX-Spam-Relays-External:quimby.gnus.org, 0.992-32454--1440h-106666s--0d--HTo:D*gnus.org, 0.992-33731--1506h-110891s--0d--H*RU:quimby.gnus.org Autolearn status: ham -0.6 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain 0.8 BAYES_50 BODY: Bayes spam probability is 40 to 60% [score: 0.4697] List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85192 Archived-At: Hi, I face a quite mysterious trouble and am seeking advices. My using softwares are: emacs-version => "24.3.1" gnus-version => "Ma Gnus v0.12" I have just simplified my configuration into: (setq gnus-select-method '(nnimap "imap.example.net")) However, Gnus failed to open the IMAP server. Its error message is: Unable to open server nnimap+imap.example.net due to: Wrong type argument: listp, # I used edebug to investigate the cause of this trouble, and found that open-network-stream() is called wihtout `parameters' argument. In order to confirm my observation, I evaluated the following code and tried re-connection. (defadvice open-network-stream (around check-parameters activate compile) (unless parameters (error "Unrecognizable error!!!")) ad-do-it) Gnus's error message changed into: Unable to open server nnimap+imap.example.net due to: Unrecognizable error!!! I believe that this is an evidence of my observation. However, nnimap-open-connection-1() calles open-network-stream() with `parameters' argument, as you know. I cannot understand my observation and cannot imagine its cause. Any comments and suggestions? -- TSUCHIYA Masatoshi