From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 04 03:38:38 2021 Received: (at submit) by debbugs.gnu.org; 4 Jan 2021 08:38:38 +0000 Received: from localhost ([127.0.0.1]:51961 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwLNu-0007Ns-4c for submit@debbugs.gnu.org; Mon, 04 Jan 2021 03:38:38 -0500 Received: from lists.gnu.org ([209.51.188.17]:47458) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwLNr-0007Nj-DX for submit@debbugs.gnu.org; Mon, 04 Jan 2021 03:38:36 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:58830) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kwLNr-0002HT-6g for bug-gnu-emacs@gnu.org; Mon, 04 Jan 2021 03:38:35 -0500 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:52155) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kwLNn-0000xf-Tt for bug-gnu-emacs@gnu.org; Mon, 04 Jan 2021 03:38:34 -0500 X-Originating-IP: 213.47.186.175 Received: from jp (213-47-186-175.cable.dynamic.surfer.at [213.47.186.175]) (Authenticated sender: justus-gandi@piater.name) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 21934C0010; Mon, 4 Jan 2021 08:38:25 +0000 (UTC) From: Justus-dev@Piater.name To: bug-gnu-emacs@gnu.org Subject: 28.0.50; nnmaildir discards line count X-Debbugs-Package: emacs,gnus Date: Mon, 04 Jan 2021 09:38:24 +0100 Message-ID: <87ft3hhzb3.fsf@uibk.ac.at> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=217.70.183.198; envelope-from=Justus-dev@piater.name; helo=relay6-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.7 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.7 (--) With the nnmaildir backend, NOV data are created with a line count of -1, causing the %L summary-line format specifier to show a question mark. The culprit is this section in nnmaildir--update-nov in nnmaildir.el: (save-restriction (if (search-forward "\n\n" nil 'noerror) (progn (setq nov-mid (count-lines (point) (point-max))) (narrow-to-region (point-min) (1- (point)))) (setq nov-mid 0)) (goto-char (point-min)) (delete-char 1) (setq nov (nnheader-parse-head t) field (or (mail-header-lines nov) 0))) (unless (or (zerop field) (nnmaildir--param pgname 'distrust-Lines:)) (setq nov-mid field)) This code assumes that if no Lines: header is found, mail-header-lines returns 0. However, mail-header-lines returns -1 in this case, causing the correctly-counted number of lines in nov-mid to be overwritten with -1. Replacing (zerop field) by (<= field 0) fixes it. While I think this is indeed a correct immediate fix, this function should be refactored: - Why count the number of lines in the message only to discard the result if a Lines: header is found afterwards? (Well, fixing this won't have much impact: Of the 161594 messages in my nnmaildir folders, only 2982 contain a Lines: header.) - [unrelated] Above the quoted code section, the function checks if the NOV data have to be (re)created by parsing the message; if not, it raises an exception to return early. This construct should be replaced by a conditional, perhaps splitting out the second half into its own function for readability. I don't think any of the below is significant, except perhaps for the fact that this problem was not present in Emacs 27. In GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, cairo version 1.17.4) of 2021-01-03 built on piater Repository revision: dc5dab469242c40803891518efe9c9f6bd650cea Repository branch: makepkg Windowing system distributor 'System Description: Arch Linux Configured using: 'configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib --localstatedir=/var --mandir=/usr/share/man --with-gameuser=:games --with-sound=alsa --with-modules --without-gconf --without-gsettings --with-nativecomp --with-pgtk --with-x-toolkit=gtk3 --without-xaw3d --without-m17n-flt --with-cairo --with-xwidgets --without-compress-install 'CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -g -fuse-ld=gold -g -fuse-ld=gold' CPPFLAGS=-D_FORTIFY_SOURCE=2 LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now' Configured features: JPEG TIFF GIF PNG RSVG CAIRO SOUND GPM DBUS GLIB NOTIFY INOTIFY ACL GNUTLS LIBXML2 FREETYPE HARFBUZZ LIBOTF ZLIB TOOLKIT_SCROLL_BARS GTK3 PGTK XIM MODULES NATIVE_COMP THREADS XWIDGETS LIBSYSTEMD JSON PDUMPER LCMS2 Important settings: value of $LC_COLLATE: de_AT.UTF-8 value of $LC_MONETARY: de_AT.UTF-8 value of $LC_TIME: de_AT.UTF-8 value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Group Minor modes in effect: semantic-minor-modes-format: ((:eval (if (or semantic-highlight-edits-mode semantic-show-unmatched-syntax-mode) S))) gnus-agent-group-mode: t gnus-topic-mode: t shell-dirtrack-mode: t gnus-undo-mode: t show-paren-mode: t override-global-mode: t pdfgrep-mode: t pdf-occur-global-minor-mode: t tooltip-mode: t global-eldoc-mode: t electric-indent-mode: t mouse-wheel-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t buffer-read-only: t line-number-mode: t transient-mark-mode: t Load-path shadows: /usr/share/emacs/site-lisp/haskell-mode/w3m-haddock hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/w3m-haddock /usr/share/emacs/site-lisp/haskell-mode/inf-haskell hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/inf-haskell /usr/share/emacs/site-lisp/haskell-mode/highlight-uses-mode hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/highlight-uses-mode /usr/share/emacs/site-lisp/haskell-mode/haskell hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell /usr/share/emacs/site-lisp/haskell-mode/haskell-utils hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-utils /usr/share/emacs/site-lisp/haskell-mode/haskell-unicode-input-method hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-unicode-input-method /usr/share/emacs/site-lisp/haskell-mode/haskell-string hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-string /usr/share/emacs/site-lisp/haskell-mode/haskell-sort-imports hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-sort-imports /usr/share/emacs/site-lisp/haskell-mode/haskell-session hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-session /usr/share/emacs/site-lisp/haskell-mode/haskell-sandbox hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-sandbox /usr/share/emacs/site-lisp/haskell-mode/haskell-repl hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-repl /usr/share/emacs/site-lisp/haskell-mode/haskell-process hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-process /usr/share/emacs/site-lisp/haskell-mode/haskell-presentation-mode hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-presentation-mode /usr/share/emacs/site-lisp/haskell-mode/haskell-navigate-imports hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-navigate-imports /usr/share/emacs/site-lisp/haskell-mode/haskell-move-nested hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-move-nested /usr/share/emacs/site-lisp/haskell-mode/haskell-modules hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-modules /usr/share/emacs/site-lisp/haskell-mode/haskell-menu hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-menu /usr/share/emacs/site-lisp/haskell-mode/haskell-load hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-load /usr/share/emacs/site-lisp/haskell-mode/haskell-lexeme hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-lexeme /usr/share/emacs/site-lisp/haskell-mode/haskell-interactive-mode hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-interactive-mode /usr/share/emacs/site-lisp/haskell-mode/haskell-indentation hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-indentation /usr/share/emacs/site-lisp/haskell-mode/haskell-indent hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-indent /usr/share/emacs/site-lisp/haskell-mode/haskell-hoogle hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-hoogle /usr/share/emacs/site-lisp/haskell-mode/haskell-font-lock hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-font-lock /usr/share/emacs/site-lisp/haskell-mode/haskell-doc hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-doc /usr/share/emacs/site-lisp/haskell-mode/haskell-decl-scan hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-decl-scan /usr/share/emacs/site-lisp/haskell-mode/haskell-debug hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-debug /usr/share/emacs/site-lisp/haskell-mode/haskell-customize hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-customize /usr/share/emacs/site-lisp/haskell-mode/haskell-completions hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-completions /usr/share/emacs/site-lisp/haskell-mode/haskell-complete-module hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-complete-module /usr/share/emacs/site-lisp/haskell-mode/haskell-compile hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-compile /usr/share/emacs/site-lisp/haskell-mode/haskell-compat hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-compat /usr/share/emacs/site-lisp/haskell-mode/haskell-commands hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-commands /usr/share/emacs/site-lisp/haskell-mode/haskell-collapse hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-collapse /usr/share/emacs/site-lisp/haskell-mode/haskell-checkers hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-checkers /usr/share/emacs/site-lisp/haskell-mode/haskell-cabal hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-cabal /usr/share/emacs/site-lisp/haskell-mode/haskell-c2hs hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-c2hs /usr/share/emacs/site-lisp/haskell-mode/haskell-align-imports hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/haskell-align-imports /usr/share/emacs/site-lisp/haskell-mode/ghci-script-mode hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/ghci-script-mode /usr/share/emacs/site-lisp/haskell-mode/ghc-core hides /usr/share/emacs/site-lisp/haskell-mode/build-26.1/ghc-core Features: (shadow emacsbug timezone vc-hg vc-git vc-bzr pdf-sync pdf-annot pdf-outline pdf-links pdf-history smerge-mode diff diff-mode dabbrev rx term ehelp shr-color flow-fill edebug debug backtrace pop3 gnus-gravatar gravatar dns gnus-cus gnus-html gnus-kill gnus-logic gnus-mh mh-comp mh-scan mh-gnus mh-e mh-compat mh-buffers mh-loaddefs gnus-registry registry gnus-salt gnus-vm cl-print shortdoc locate mule-util ffap spam-stat nnmairix nnml gnus-uu yenc gnus-sieve gnus-notifications gnus-fun notifications gnus-eform gnus-dup gnus-diary nndiary gnus-demon gnus-delay gnus-bookmark deuglify tramp-cmds misearch multi-isearch view smiley utf-7 imap rfc2104 epa-file mailalias smtpmail sendmail gnus-bcklg gnus-draft gnus-cite mail-extr gnus-async qp sort gnus-ml disp-table gnus-topic mm-archive gnutls network-stream url-http url-gw nsm url-cache url-auth nnrss nndraft nnmh nnfolder nnmaildir gnus-agent gnus-srvr gnus-score score-mode nnvirtual gnus-msg nntp gnus-cache tramp-cache tramp-sh tramp tramp-loaddefs trampver tramp-integration files-x tramp-compat native-complete shell ls-lisp cus-theme xwidget wid-browse tree-widget dired-aux org-clock diary-lib diary-loaddefs cal-iso org-indent ol-eww eww xdg url-queue thingatpt mm-url ol-rmail ol-mhe ol-irc ol-info ol-gnus nnselect gnus-search eieio-opt speedbar ezimage dframe gnus-art mm-uu mml2015 mm-view mml-smime smime dig gnus-sum shr kinsoku svg dom gnus-group gnus-undo gnus-start gnus-dbus dbus xml gnus-cloud nnimap nnmail mail-source utf7 netrc nnoo gnus-spec gnus-int gnus-range message rmc puny rfc822 mml mml-sec epa epg epg-config mailabbrev gmm-utils mailheader gnus-win ol-docview ol-bibtex bibtex ol-bbdb ol-w3m poly-org polymode poly-lock polymode-base polymode-weave polymode-export polymode-compat polymode-methods polymode-core polymode-classes eieio-custom eieio-base color matlab derived matlab-compat pulse face-remap org-agenda paren gnus nnheader gnus-util rmail rmail-loaddefs mail-utils gnus-dired parse-time iso8601 use-package-bind-key bind-key quelpa-use-package cl-extra use-package-core quelpa mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 mm-util ietf-drums mail-prsvr lisp-mnt help-fns radix-tree help-mode ox-odt rng-loc rng-uri rng-parse rng-match rng-dt rng-util rng-pttrn nxml-parse nxml-ns nxml-enc xmltok nxml-util ox-latex ox-icalendar ox-html table ox-ascii ox-publish ox org-element avl-tree generator org-id org-refile haskell-mode-autoloads yaml-mode shell-here org-recoll edmacro kmacro doc-view org ob ob-tangle ob-ref ob-lob ob-table ob-exp org-macro org-footnote org-src ob-comint org-pcomplete pcomplete org-list org-faces org-entities time-date noutline outline easy-mmode org-version ob-emacs-lisp ob-core ob-eval org-table ol org-keys org-compat org-macs org-loaddefs cal-menu calendar cal-loaddefs pdfgrep grep pdf-occur ibuf-ext ibuffer ibuffer-loaddefs tablist tablist-filter semantic/wisent/comp semantic/wisent semantic/wisent/wisent semantic/util-modes semantic/util semantic semantic/tag semantic/lex semantic/fw mode-local find-func cedet pdf-isearch let-alist pdf-misc imenu pdf-tools compile comint ansi-color ring cus-edit cus-start cus-load wid-edit pdf-view bookmark text-property-search pp jka-compr pdf-cache pdf-info tq pdf-util advice format-spec image-mode dired dired-loaddefs exif server info package easymenu browse-url url url-proxy url-privacy url-expand url-methods url-history url-cookie url-domsuf url-util mailcap url-handlers url-parse auth-source cl-seq eieio eieio-core cl-macs eieio-loaddefs password-cache json subr-x map url-vars seq byte-opt gv bytecomp byte-compile cconv cl-loaddefs cl-lib iso-transl tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type mwheel term/pgtk-win pgtk-win term/common-win tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode elisp-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core term/tty-colors frame minibuffer cl-generic cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite charscript charprop case-table epa-hook jka-cmpr-hook help simple abbrev obarray cl-preloaded nadvice button loaddefs faces cus-face pcase macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote threads xwidget-internal dbusbind inotify dynamic-setting font-render-setting cairo move-toolbar gtk x-toolkit pgtk lcms2 multi-tty make-network-process nativecomp emacs) Memory information: ((conses 16 2133617 264148) (symbols 48 55146 3) (strings 32 1087649 82508) (string-bytes 1 63791349) (vectors 16 393221) (vector-slots 8 6065362 537361) (floats 8 598 661) (intervals 56 87491 968) (buffers 984 90)) From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 04 04:55:57 2021 Received: (at 45650) by debbugs.gnu.org; 4 Jan 2021 09:55:57 +0000 Received: from localhost ([127.0.0.1]:55003 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwMaa-0002xd-6y for submit@debbugs.gnu.org; Mon, 04 Jan 2021 04:55:56 -0500 Received: from quimby.gnus.org ([95.216.78.240]:57844) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwMPq-0002GJ-9B for 45650@debbugs.gnu.org; Mon, 04 Jan 2021 04:45:00 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=vKONy1gFMYbFfZ6bDFAzDY0aChf5iYbwfFwfouTm1zs=; b=ToFePsL3IJTBkdekwbv6me5tsb woxt1/e0xz9JoGYzW8OOkj4xeCP9jpRFTpmsbIlcYrmGavE1bqaPuQmQVbLIMQKQ7bGoIEB8fGqqN VkCs7XR+HwLUwTuUaQwaKzirm2gm+3EDe6BkIs6vrP0KMC2gF9YpbpD02GCCcz5HdKqU=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kwMPh-0001om-CX; Mon, 04 Jan 2021 10:44:35 +0100 From: Lars Ingebrigtsen To: Justus-dev@Piater.name Subject: Re: bug#45650: 28.0.50; nnmaildir discards line count References: <87ft3hhzb3.fsf@uibk.ac.at> X-Now-Playing: Can Can's _En lek i forhold_: "Oppenheimer" Date: Mon, 04 Jan 2021 10:44:31 +0100 In-Reply-To: <87ft3hhzb3.fsf@uibk.ac.at> (Justus-dev@piater.name's message of "Mon, 04 Jan 2021 09:38:24 +0100") Message-ID: <87sg7h594w.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Justus-dev@Piater.name writes: > This code assumes that if no Lines: header is found, mail-header-lines > returns 0. However, mail-header-lines returns -1 in this case, causing > the correctly-counted number of lines in nov-mid to [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 45650 Cc: 45650@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Justus-dev@Piater.name writes: > This code assumes that if no Lines: header is found, mail-header-lines > returns 0. However, mail-header-lines returns -1 in this case, causing > the correctly-counted number of lines in nov-mid to be overwritten with > -1. > > Replacing (zerop field) by (<= field 0) fixes it. > > While I think this is indeed a correct immediate fix, That's a very confusing function, but this does indeed seem to be the correct fix here, and I've now done as you suggested in Emacs 28. > this function should be refactored: > > - Why count the number of lines in the message only to discard the > result if a Lines: header is found afterwards? (Well, fixing this > won't have much impact: Of the 161594 messages in my nnmaildir > folders, only 2982 contain a Lines: header.) > > - [unrelated] Above the quoted code section, the function checks if the > NOV data have to be (re)created by parsing the message; if not, it > raises an exception to return early. This construct should be > replaced by a conditional, perhaps splitting out the second half into > its own function for readability. Both things seem reasonable, so if somebody wants to do that (or rewrite that function to be less confusing in general), I'm all for it. But as your change fixes this bug, I'm closing this bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 04 04:56:02 2021 Received: (at control) by debbugs.gnu.org; 4 Jan 2021 09:56:02 +0000 Received: from localhost ([127.0.0.1]:55010 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwMaj-0002yL-9R for submit@debbugs.gnu.org; Mon, 04 Jan 2021 04:56:02 -0500 Received: from quimby.gnus.org ([95.216.78.240]:57844) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwMQ8-0002GJ-UY for control@debbugs.gnu.org; Mon, 04 Jan 2021 04:45:15 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=mXzixo6DBgUcsIXdJ+sTmKh3+qSEWzXpVsoVF2N5dWk=; b=pI1zjUmDne7NeOtgcuOPNVhlM6 3uGjuFNeSuMEhLtUxT/cZD+oSEnOH9T1E/OzmkPXmMzPnW4OIlWCLT9Gu9SR4R2ISoPBQ96CP0SUm XmlRvLWbzZUCes+EIAIrJG4+xoFN4ET7pPpZl3yVwB6XVhQrA9KW2t41KgZAU+d3W1io=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kwMPn-0001oz-HA for control@debbugs.gnu.org; Mon, 04 Jan 2021 10:44:41 +0100 Date: Mon, 04 Jan 2021 10:44:38 +0100 Message-Id: <87r1n1594p.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #45650 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 45650 fixed close 45650 28.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 45650 fixed close 45650 28.1 quit From unknown Sun Jun 15 08:48:36 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 01 Feb 2021 12:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator