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=0.5 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS autolearn=no autolearn_force=no version=3.4.4 Received: from mx2.math.uh.edu (mx2.math.uh.edu [129.7.128.33]) by inbox.vuxu.org (Postfix) with ESMTP id DA8D72219D for ; Wed, 17 Apr 2024 21:54:51 +0200 (CEST) Received: from lists1.math.uh.edu ([129.7.128.208]) by mx2.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.97.1) (envelope-from ) id 1rxBMi-00000000tUv-2u7j for ml@inbox.vuxu.org; Wed, 17 Apr 2024 14:54:49 -0500 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 1rxBKY-00000003SuQ-34c7 for ml@inbox.vuxu.org; Wed, 17 Apr 2024 14:52:30 -0500 Received: from mx2.math.uh.edu ([129.7.128.33]) by lists1.math.uh.edu with esmtp (Exim 4.97.1) (envelope-from ) id 1rxBKX-00000003SuJ-0RyJ for ding@lists.math.uh.edu; Wed, 17 Apr 2024 14:52:29 -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.97.1) (envelope-from ) id 1rxBKS-00000000tUM-26Ts for ding@lists.math.uh.edu; Wed, 17 Apr 2024 14:52:28 -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=NofDgi5yFIli6C+AeMKJy4gvFwEAOTv2tc46GpHzMzc=; b=Jvc00Ek6LsNt4EX/AgSEFmq1TV EtWQMPukiE6DDQQiHblSMSqkCI1i9UPPA4u5L1d5TEUEmnps5BhQsdp/wMxLoui0Gc9/TkFsUQ/+5 iwCk0pnwvXZaP2j/mqEaWxwWkoHK8wWGlk+FzGW3Bqr6ULhRP1XdH+mK6lRnHKzukoeE=; 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 1rxBKF-00059u-Hz for ding@gnus.org; Wed, 17 Apr 2024 21:52:14 +0200 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1rxBKC-0001w4-Mo for ding@gnus.org; Wed, 17 Apr 2024 21:52:09 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org To: ding@gnus.org From: Dan Christensen Subject: Re: Gnus sometimes reports new messages but not showing them on IMAP server Date: Wed, 17 Apr 2024 15:51:59 -0400 Message-ID: <878r1blqcg.fsf@uwo.ca> References: <87h6g7mm8r.fsf@debian-hx90.lan> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:ugmlYt/lZ0CmgcWQj1TpJWkT3fU= Mail-Copies-To: never List-ID: Precedence: bulk On Apr 11, 2024, Xiyue Deng wrote: > I'm having some issues that Gnus sometimes reports that there are new > messages on an IMAP server but it doesn't show them. On Apr 16, 2024, Greg Troxel wrote: > Often, I get a message on my phone that I just leave (marked read) to > deal with later. Sometimes, maybe 1 in 50, I can't find it in gnus, and > on looking harder find that it is just not showing up there. For both of you, does hitting `M-g' with point on the group in the *Group* buffer fix things? I regularly have similar problems, and I've resorted to binding the following function to a key: (defun jdc-gnus-update-IMAP () (interactive) ; Only run this in the group buffer or it corrupts other buffers: (switch-to-buffer gnus-group-buffer) (gnus-topic-jump-to-topic "IMAP groups") (gnus-topic-get-new-news-this-topic) (gnus-group-list-groups) ; "l", as previous command shows all groups in topic ) I think it's doing the equivalent of `M-g' on all groups in the topic I have that contains my IMAP groups. For the record, I'm also using dovecot and k9-mail. Dan