From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: =?ISO-8859-1?Q?S=E9bastien?= Gendre Newsgroups: gmane.emacs.help Subject: GNUS don't show all my emails Date: Wed, 20 May 2020 17:29:12 +0200 Message-ID: <470b021314604ccb30ff86be9c3274c161aa5b92.camel@k-7.ch> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="40231"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Evolution 3.36.2 (3.36.2-1.fc32) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Wed May 20 17:30:00 2020 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jbQfO-000AK9-Cp for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 20 May 2020 17:29:58 +0200 Original-Received: from localhost ([::1]:45624 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jbQfN-0004ct-FO for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 20 May 2020 11:29:57 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:38064) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jbQeo-0004ac-9H for help-gnu-emacs@gnu.org; Wed, 20 May 2020 11:29:22 -0400 Original-Received: from 50-102-31-185.ftth.cust.kwaoo.net ([185.31.102.50]:50140 helo=gandalf.k-7.ch) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jbQem-0004Qs-TC for help-gnu-emacs@gnu.org; Wed, 20 May 2020 11:29:21 -0400 Original-Received: from escaflown.lan (Alfred.lan [192.168.1.1]) (Authenticated sender: seb) by gandalf.k-7.ch (Postfix) with ESMTPSA id D16CBE810F for ; Wed, 20 May 2020 17:29:13 +0200 (CEST) Received-SPF: none client-ip=185.31.102.50; envelope-from=seb@k-7.ch; helo=gandalf.k-7.ch X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/20 11:29:14 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -8 X-Spam_score: -0.9 X-Spam_bar: / X-Spam_report: (-0.9 / 5.0 requ) BAYES_00=-1.9, RDNS_DYNAMIC=0.982, TVD_RCVD_IP=0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:123110 Archived-At: Hello world. When I want to see all my emails with GNUS (C-U Enter), some e-mails are not show. I use a personnal email address, mailboxs are provided by a dovecot installation. Tested with another IMAP client, no problem. This is the config I applied to GNUS: (require 'gnus) (setq gnus-init-file "~/.emacs.d/gnus.el") (setq gnus-startup-file "~/.emacs.d/.newsrc") (setq gnus-summary-line-format "%U%R %(%&user-date;%) %-5,5L %- 30,30f %B%-80,80S\n" gnus-user-date-format-alist '((t . "%Y-%m-%d %H:%M")) gnus-thread-sort-functions '(gnus-thread-sort-by-date) gnus-sum-thread-tree-vertical "|" gnus-sum-thread-tree-root "" gnus-sum-thread-tree-false-root "" gnus-sum-thread-tree-indent " " gnus-sum-thread-tree-single-indent "" gnus-sum-thread-tree-leaf-with-other "├► " gnus-sum-thread-tree-single-leaf "╰► ") (setq gnus-message-archive-group "nnimap+main-mail:Envoyés") (add-hook 'message-setup-hook 'mml-secure-message-sign) (add-hook 'message-mode-hook 'flyspell-mode) (defun gnus-nnir-group-p (group) "Say whether GROUP is nnir or not." (if (gnus-group-prefixed-p group) (eq 'nnir (car (gnus-find-method-for-group group))) (and group (string-match "^nnir" group)))) Inside ~/.emacs.d/gnus.el I define my IMAP account: (setq gnus-select-method '(nnimap "main-mail" (nnimap-address "exemple.com") (nnimap-server-port 666) (nnimap-stream ssl) (nnimap-inbox "INBOX") ;; (nnimap-split-methods default) (nnimap-split-methods nil) (nnimap-expunge t))) Anyone already have this problem?