From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: from mx1.math.uh.edu (mx1.math.uh.edu [129.7.128.32]) by inbox.vuxu.org (Postfix) with ESMTP id 6B62D247FA for ; Sat, 10 Feb 2024 09:10:28 +0100 (CET) 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.97.1) (envelope-from ) id 1rYiRO-00000009n29-3iyb for ml@inbox.vuxu.org; Sat, 10 Feb 2024 02:10:26 -0600 Received: from lists1.math.uh.edu ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.97.1) (envelope-from ) id 1rYiRO-00000000MsO-2Sa1 for ml@inbox.vuxu.org; Sat, 10 Feb 2024 02:10:26 -0600 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtp (Exim 4.97.1) (envelope-from ) id 1rYiRL-00000000MsF-23Dc for ding@lists.math.uh.edu; Sat, 10 Feb 2024 02:10:23 -0600 Received: from quimby.gnus.org ([95.216.78.240]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.97.1) (envelope-from ) id 1rYiRK-00000009n1a-0f79 for ding@lists.math.uh.edu; Sat, 10 Feb 2024 02:10:23 -0600 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=j78GttiChIAek1SAB6c7wctUyULsS2KtfxXBzEn336Q=; b=BUjs0sdXDi3frLTNA3usp6uDO5 1Oz5sXbo//oc/AAOp9kv+4cN6WSrmz1sx2DZIx77AlO91b3wEfffk19GNo1AaFqTCezXqQTpxveTd iOPaHyqpKkSnQzwLrFtTm7J0UJ8AjD5TOVtF8ukYEXnFAbF/TbpvhMNILgghCD809RZs=; 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 1rYiRC-00051N-Vn for ding@gnus.org; Sat, 10 Feb 2024 09:10:17 +0100 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1rYiRB-0008Bf-Bh for ding@gnus.org; Sat, 10 Feb 2024 09:10:13 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: ding@gnus.org From: NNTP Surfer Subject: Re: Gnus hangs when not used for 5 minutes Date: Sat, 10 Feb 2024 09:09:55 +0100 Message-ID: <874jegloz0.fsf@its.a.fake> References: <87sf222hok.fsf@its.a.fake> <87zfw9l001.fsf@ericabrahamsen.net> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:vuquIofaj/5E1wwtvIhc3KdHCCA= List-ID: Precedence: bulk Eric Abrahamsen writes: > From your username I'm guessing that this is an nntp server. Try setting > `nntp-connection-timeout' to a lowish number of seconds, and see if that > fixes it? Yes, adding (nntp-connection-timeout 10) to every nntp server configuration solves this problem: #+begin_src emacs-lisp gnus-secondary-select-methods '( ;; (nntp "news.eternal-september.org" ;; ... ;; (nntp-connection-timeout 10)) (nntp "news.gwene.org" (nntp-connection-timeout 10)) #+end_src Thank you :)