From unknown Wed Jun 18 23:13:15 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#22173 <22173@debbugs.gnu.org> To: bug#22173 <22173@debbugs.gnu.org> Subject: Status: 25.1.50; server-reply-print does not avoid escape boundaries properly Reply-To: bug#22173 <22173@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:13:15 +0000 retitle 22173 25.1.50; server-reply-print does not avoid escape boundaries = properly reassign 22173 emacs submitter 22173 Jason Feng severity 22173 normal tag 22173 moreinfo thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 14 21:20:33 2015 Received: (at submit) by debbugs.gnu.org; 15 Dec 2015 02:20:34 +0000 Received: from localhost ([127.0.0.1]:52043 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a8fE9-0002of-H5 for submit@debbugs.gnu.org; Mon, 14 Dec 2015 21:20:33 -0500 Received: from eggs.gnu.org ([208.118.235.92]:32872) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1a8fE8-0002oS-Ep for submit@debbugs.gnu.org; Mon, 14 Dec 2015 21:20:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a8fE1-0005Oc-IW for submit@debbugs.gnu.org; Mon, 14 Dec 2015 21:20:27 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:37168) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8fE1-0005OY-Fi for submit@debbugs.gnu.org; Mon, 14 Dec 2015 21:20:25 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42870) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8fDz-0007VB-Qx for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2015 21:20:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a8fDw-0005O8-Hc for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2015 21:20:23 -0500 Received: from 107-215-216-65.lightspeed.sntcca.sbcglobal.net ([107.215.216.65]:39039 helo=pancake.ozbert.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8fDw-0005NI-0O for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2015 21:20:20 -0500 Received: from jfeng by pancake.ozbert.com with local (Exim 4.82) (envelope-from ) id 1a8ege-0002MV-TQ for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2015 17:45:56 -0800 Date: Mon, 14 Dec 2015 17:45:56 -0800 From: Jason Feng To: bug-gnu-emacs@gnu.org Subject: 25.1.50; server-reply-print does not avoid escape boundaries properly Message-ID: <20151215014556.GA12783@ozbert.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) 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: -5.0 (-----) When printing a large amount of data over the emacs client protocol, any printed data with spaces or newlines or other quoted characters may get parts of the escape sequence inserted into the decoded stream due to splitting. Given any current emacs server instance, the bug can be triggered by using emacsclient -e to evaluate the following code: (concat (make-string (- server-msg-size (length "-print ") 3) ?a) " ") A patched version of the function that I'm currently using in my setup appears to solve the problem: (defun server-reply-print (qtext proc) "Send a `-print QTEXT' command to client PROC. QTEXT must be already quoted. This handles splitting the command if it would be bigger than `server-msg-size'." (let ((prefix "-print ") part) (while (> (+ (length qtext) (length prefix) 1) server-msg-size) ;; We have to split the string (setq part (substring qtext 0 (- server-msg-size (length prefix) 1))) ;; Don't split in the middle of a quote sequence (if (string-match (rx (group "&") (* (group "&&")) eol) part) ;; There is an uneven number of & at the end (setq part (substring part 0 -1))) (setq qtext (substring qtext (length part))) (server-send-string proc (concat prefix part "\n")) (setq prefix "-print-nonl ")) (server-send-string proc (concat prefix qtext "\n")))) In GNU Emacs 25.1.50.2 (x86_64-pc-linux-gnu, GTK+ Version 3.10.8) of 2015-12-10 Windowing system distributor 'The X.Org Foundation', version 11.0.11501000 System Description: Ubuntu 14.04.3 LTS Configured using: 'configure --build=x86_64-linux-gnu --prefix=/usr '--includedir=${prefix}/include' '--mandir=${prefix}/share/man' '--infodir=${prefix}/share/info' --sysconfdir=/etc --localstatedir=/var '--libdir=${prefix}/lib/x86_64-linux-gnu' '--libexecdir=${prefix}/lib/x86_64-linux-gnu' --disable-maintainer-mode --disable-dependency-tracking --prefix=/usr --sharedstatedir=/var/lib --program-suffix=-snapshot --with-x=yes --with-x-toolkit=gtk3 'CFLAGS=-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security' CPPFLAGS=-D_FORTIFY_SOURCE=2 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro'' Configured features: XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND GPM DBUS GCONF GSETTINGS NOTIFY LIBSELINUX GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS GTK3 X11 Important settings: value of $LANG: en_US.UTF-8 value of $XMODIFIERS: @im=ibus locale-coding-system: utf-8-unix Major mode: Emacs-Lisp Minor modes in effect: shell-dirtrack-mode: t iswitchb-mode: t diff-auto-refine-mode: t tooltip-mode: t global-eldoc-mode: t electric-indent-mode: t mouse-wheel-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 Recent messages: Indenting region...done Mark set [3 times] => [{:left-arm [-1.8972638273399445 -1.8972638273399445], :right-arm [-1.2571756745781983 -1.2571756745781983], :left-leg [-1.8218243292336378 -1.8036620006694457], :right-leg [-1.3379306529203474 -1.3197683243561553]} {:left-arm [-1.8972638273399445 -1.8972638273399445], :right-arm [-1.2571756745781983 -1.2571756745781983], :left-leg [-1.8129101936957523 -1.3286824598940408], :right-leg [-2.133467249511094 -1.0081254040786989]} {:left-arm [-1.8972638273399445 -1.8972638273399445], :right-arm [-1.2571756745781983 -1.2571756745781983], :left-leg [-1.3379306529203474 -1.3197683243561553], :right-leg [-1.8218243292336378 -1.8036620006694457]} {:left-arm [-1.8972638273399445 -1.8972638273399445], :right-arm [-1.2571756745781983 -1.2571756745781983], :left-leg [-2.133467249511094 -1.0081254040786989], :right-leg [-1.8129101936957523 -1.3286824598940408]}] Mark set => 7730 Mark set [2 times] Type "q" in help window to delete it. mouse-2, RET: find function's definition uncompressing server.el.gz...done Note: file is write protected Quit Load-path shadows: /usr/share/emacs/site-lisp/dictionaries-common/ispell hides /usr/share/emacs/25.1.50/lisp/textmodes/ispell /usr/share/emacs/site-lisp/dictionaries-common/flyspell hides /usr/share/emacs/25.1.50/lisp/textmodes/flyspell /home/jason/elisp/ruby-mode hides /usr/share/emacs/25.1.50/lisp/progmodes/ruby-mode /home/jason/elisp/dns hides /usr/share/emacs/25.1.50/lisp/net/dns Features: (shadow sort mail-extr emacsbug message rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mail-utils jka-compr eieio-opt speedbar sb-image ezimage dframe conf-mode cider-hacks clojure-hacks pkg-info lisp-mnt epl network-stream nsm starttls tls cider tramp-sh cider-debug cider-mode cider-repl cider-eldoc cider-interaction compile arc-mode archive-mode cider-doc org-table org org-macro org-footnote org-pcomplete org-list org-faces org-entities noutline outline org-version ob-emacs-lisp ob ob-tangle ob-ref ob-lob ob-table ob-exp org-src ob-keys ob-comint ob-core ob-eval org-compat org-macs org-loaddefs find-func cal-menu calendar cal-loaddefs cider-test cider-stacktrace cider-client nrepl-client tramp tramp-compat tramp-loaddefs trampver format-spec advice queue cider-util ewoc etags xref project thingatpt dash vc vc-dispatcher ido figwheel clojure-mode imenu jf-dired seq dired shell pcomplete comint ring character-fold misearch multi-isearch pp extras passwords paredit iswitchb term-mods find-stuff flashy nav window-buffer-junk git-wads vc-git diff-mode easy-mmode jfproc doc-mods image-drag shell-mods indent-wads ansi-color edmacro kmacro cc-styles cc-align cc-engine cc-vars cc-defs rx cl server finder-inf clojure-mode-autoloads info geiser-autoloads pkg-info-autoloads epl-autoloads dash-autoloads queue-autoloads scala-mode-autoloads package epg-config url-handlers url-parse auth-source cl-seq eieio byte-opt bytecomp byte-compile cl-extra cconv eieio-core cl-macs gv gnus-util time-date mm-util help-fns help-mode easymenu cl-loaddefs pcase cl-lib mail-prsvr password-cache url-vars mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment elisp-mode lisp-mode prog-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame 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 charscript case-table epa-hook jka-cmpr-hook help simple abbrev obarray minibuffer cl-preloaded nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote dbusbind inotify dynamic-setting system-font-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 295641 26396) (symbols 48 36677 0) (miscs 40 1394 2304) (strings 32 69087 8909) (string-bytes 1 2161821) (vectors 16 30924) (vector-slots 8 689437 7213) (floats 8 352 591) (intervals 56 7101 45) (buffers 976 30) (heap 1024 57288 2916)) From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 01 13:13:29 2019 Received: (at 22173) by debbugs.gnu.org; 1 Aug 2019 17:13:29 +0000 Received: from localhost ([127.0.0.1]:55088 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1htEdt-00053y-H3 for submit@debbugs.gnu.org; Thu, 01 Aug 2019 13:13:29 -0400 Received: from quimby.gnus.org ([80.91.231.51]:42840) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1htEdr-00053q-N0 for 22173@debbugs.gnu.org; Thu, 01 Aug 2019 13:13:28 -0400 Received: from 77.18.62.220.tmi.telenormobil.no ([77.18.62.220] helo=sandy) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1htEdo-0002IV-Ja; Thu, 01 Aug 2019 19:13:27 +0200 From: Lars Ingebrigtsen To: Jason Feng Subject: Re: bug#22173: 25.1.50; server-reply-print does not avoid escape boundaries properly References: <20151215014556.GA12783@ozbert.com> Date: Thu, 01 Aug 2019 19:13:23 +0200 In-Reply-To: <20151215014556.GA12783@ozbert.com> (Jason Feng's message of "Mon, 14 Dec 2015 17:45:56 -0800") Message-ID: <878ssckdvw.fsf@mouse.gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable 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: Jason Feng writes: > When printing a large amount of data over the emacs client protocol, any > printed data with spaces or newlines or other quoted characters may get > parts of the escape sequence inserted into the de [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP 0.0 TVD_RCVD_IP Message was received from an IP address -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 22173 Cc: 22173@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 (-) Jason Feng writes: > When printing a large amount of data over the emacs client protocol, any > printed data with spaces or newlines or other quoted characters may get > parts of the escape sequence inserted into the decoded stream due to > splitting. > > Given any current emacs server instance, the bug can be triggered by > using emacsclient -e to evaluate the following code: > > (concat (make-string (- server-msg-size (length "-print ") 3) ?a) " ") (I'm going through old bug reports that have unfortunately not gotten any responses.) I tried reproducing this in Emacs 27: $ ./lib-src/emacsclient --eval '(concat (make-string (- server-msg-size (le= ngth "-print ") 3) ?a) " ")' "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa " And that seems to be the expected result, so I'm not able to reproduce this. Are you still seeing the problem? --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 01 13:13:36 2019 Received: (at control) by debbugs.gnu.org; 1 Aug 2019 17:13:36 +0000 Received: from localhost ([127.0.0.1]:55091 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1htEdz-00054Q-Rl for submit@debbugs.gnu.org; Thu, 01 Aug 2019 13:13:36 -0400 Received: from quimby.gnus.org ([80.91.231.51]:42854) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1htEdy-00054I-37 for control@debbugs.gnu.org; Thu, 01 Aug 2019 13:13:34 -0400 Received: from 77.18.62.220.tmi.telenormobil.no ([77.18.62.220] helo=sandy) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1htEdv-0002Ic-HB for control@debbugs.gnu.org; Thu, 01 Aug 2019 19:13:33 +0200 Date: Thu, 01 Aug 2019 19:13:31 +0200 Message-Id: <877e7wkdvo.fsf@mouse.gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #22173 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 22173 + moreinfo 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 0.0 TVD_RCVD_IP Message was received from an IP address -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 22173 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 14 03:30:40 2019 Received: (at 22173) by debbugs.gnu.org; 14 Oct 2019 07:30:40 +0000 Received: from localhost ([127.0.0.1]:37895 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJuoR-0005Nm-PA for submit@debbugs.gnu.org; Mon, 14 Oct 2019 03:30:40 -0400 Received: from [80.91.231.51] (port=51918 helo=quimby.gnus.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJuoP-0005LL-PN for 22173@debbugs.gnu.org; Mon, 14 Oct 2019 03:30:38 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iJuoK-0003Dv-NT; Mon, 14 Oct 2019 09:30:36 +0200 From: Lars Ingebrigtsen To: Jason Feng Subject: Re: bug#22173: 25.1.50; server-reply-print does not avoid escape boundaries properly References: <20151215014556.GA12783@ozbert.com> <878ssckdvw.fsf@mouse.gnus.org> Date: Mon, 14 Oct 2019 09:30:32 +0200 In-Reply-To: <878ssckdvw.fsf@mouse.gnus.org> (Lars Ingebrigtsen's message of "Thu, 01 Aug 2019 19:13:23 +0200") Message-ID: <87lftnlr6v.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.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: Lars Ingebrigtsen writes: > And that seems to be the expected result, so I'm not able to reproduce > this. Are you still seeing the problem? More information was requested some weeks back, but no response was given, so I'm closing this bug report. If you're still seeing this problem, please reopen. 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: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.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 the administrator of that system for details. Content preview: Lars Ingebrigtsen writes: > And that seems to be the expected result, so I'm not able to reproduce > this. Are you still seeing the problem? More information was requested some weeks back, but no response was given, so I'm closing this bug report. If you're still seeing this problem, please reopen. Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ingebrigtsen.no] 0.0 SPF_NONE SPF: sender does not publish an SPF Record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS X-Debbugs-Envelope-To: 22173 Cc: 22173@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: 0.3 (/) Lars Ingebrigtsen writes: > And that seems to be the expected result, so I'm not able to reproduce > this. Are you still seeing the problem? More information was requested some weeks back, but no response was given, so I'm closing this bug report. If you're still seeing this problem, please reopen. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 14 03:30:45 2019 Received: (at control) by debbugs.gnu.org; 14 Oct 2019 07:30:45 +0000 Received: from localhost ([127.0.0.1]:37898 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJuoX-0005Re-5l for submit@debbugs.gnu.org; Mon, 14 Oct 2019 03:30:45 -0400 Received: from [80.91.231.51] (port=51932 helo=quimby.gnus.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iJuoT-0005Pk-TH for control@debbugs.gnu.org; Mon, 14 Oct 2019 03:30:43 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iJuoR-0003E2-8R for control@debbugs.gnu.org; Mon, 14 Oct 2019 09:30:41 +0200 Date: Mon, 14 Oct 2019 09:30:38 +0200 Message-Id: <87k197lr6p.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #22173 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: close 22173 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: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.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 the administrator of that system for details. Content preview: close 22173 quit Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_NONE SPF: sender does not publish an SPF Record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS 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: 0.3 (/) close 22173 quit From unknown Wed Jun 18 23:13:15 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, 11 Nov 2019 12:24:13 +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