From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 4510 invoked from network); 27 May 2021 15:59:53 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 27 May 2021 15:59:53 -0000 Received: from lists1.math.uh.edu ([129.7.128.208]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lmIQJ-007gWk-RJ for ml@inbox.vuxu.org; Thu, 27 May 2021 10:59:51 -0500 Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.94) (envelope-from ) id 1lmIQJ-00Ghlz-9n for ml@inbox.vuxu.org; Thu, 27 May 2021 10:59:51 -0500 Received: from mx2.math.uh.edu ([129.7.128.33]) by lists1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lmIQI-00Ghls-46 for ding@lists.math.uh.edu; Thu, 27 May 2021 10:59:50 -0500 Received: from quimby.gnus.org ([95.216.78.240]) by mx2.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1lmIQG-006VMR-Fc for ding@lists.math.uh.edu; Thu, 27 May 2021 10:59:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:Mime-Version:References:Message-ID:Date:Subject: From:To:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Fh88JDH8pz31Qcc05rDAPlvR8EknVowRVW54mn/Ladc=; b=ntx/yYPfTwi/ow0k6ZFhuP2mdS XAHPUtFuoc3ETRW8S3pwigNu5ZfkRAL+6ha2R+F1jBg2FxFq8ZEQ/xTpLRGtaV6X1RMIWc48sokTx SWfHt+rRIUXmY2LNqJBsdCt+j4+ywc0sJxJSKnn930tRVphTmWELKA4p0GP4WSck3GrI=; Received: from ciao.gmane.io ([116.202.254.214]) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lmIQ8-0006Dw-Oi for ding@gnus.org; Thu, 27 May 2021 17:59:43 +0200 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1lmIQ7-00096W-Bd for ding@gnus.org; Thu, 27 May 2021 17:59:39 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: ding@gnus.org From: Eric Abrahamsen Subject: Re: Mail source failed, wrong-type-argument integer-or-marker-p nil Date: Thu, 27 May 2021 08:59:22 -0700 Message-ID: <87wnrkw4kl.fsf@ericabrahamsen.net> References: <87zgy6fes6.fsf@zoho.eu> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cancel-Lock: sha1:Gc7SHfORyW7Q2wmUIfWYlMLXN2c= List-ID: Precedence: bulk Hirotaka Honda writes: > Dear all > > Mail source (pop :server hondalaw.sakura.ne.jp :user > hirotaka@hondalaw.com :leave 64 :port 995 :authentication apop) > failed: (wrong-type-argument integer-or-marker-p nil) That error is coming from somewhere in the code below, which could actually be quite a bit of code since it is calling out to `nnmail-split-incoming' which is a fairly large function. Have you changed anything configuration related to mail splitting recently? One thing you can try, to get a better traceback, is find this code in the source file (nnmail.el:1828) and change the `condition-case' to `condition-case-unless-debug'. Then M-x toggle-debug-on-error, and run the code again, and paste the traceback you get from that. (condition-case cond (mail-source-fetch source (let ((smsym (intern (format "%s-save-mail" method))) (ansym (intern (format "%s-active-number" method))) (src source)) (lambda (file orig-file) (nnmail-split-incoming file smsym spool-func (or in-group (if (equal file orig-file) nil (nnmail-get-split-group orig-file src))) ansym)))) ((error quit) (message "Mail source %s failed: %s" source cond) 0))