From unknown Sat Aug 16 10:46: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#17958 <17958@debbugs.gnu.org> To: bug#17958 <17958@debbugs.gnu.org> Subject: Status: SHR: base handling broken (shr-parse-base, shr-expand-url) Reply-To: bug#17958 <17958@debbugs.gnu.org> Date: Sat, 16 Aug 2025 17:46:15 +0000 retitle 17958 SHR: base handling broken (shr-parse-base, shr-expand-url) reassign 17958 emacs submitter 17958 Ivan Shmakov severity 17958 normal tag 17958 fixed patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 06 14:46:31 2014 Received: (at submit) by debbugs.gnu.org; 6 Jul 2014 18:46:31 +0000 Received: from localhost ([127.0.0.1]:45151 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X3rSI-00008L-R5 for submit@debbugs.gnu.org; Sun, 06 Jul 2014 14:46:31 -0400 Received: from fely.am-1.org ([78.47.74.50]:46233) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1X3rSF-00008B-6J for submit@debbugs.gnu.org; Sun, 06 Jul 2014 14:46:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:Date:Sender:Subject:To:From; bh=O1l39Hlu/KnhWDHCW2/rb9xZ/D3b+jN0Xb/bgl98Qr8=; b=g5y5Z6jn/rSZ2aAK8wJtvhihePScbd+s+KMSSmCFpnhEajT/+EuK7UT7VtPwomB8DBZEXdT8agV8rczmAtouwXmfnYF2AssrYh2okOWSjuWJvk/o3/crpAGJiQmauqUB1uK9/2Jffu0Mak3/URz4thf1+15l7YC+5F7yGqeXhfM=; Received: from host-46-241-38-202.bbcustomer.zsttk.net ([46.241.38.202] helo=waterlily.siamics.net) by fely.am-1.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.80) (envelope-from ) id 1X3rSC-0008T4-TP for submit@debbugs.gnu.org; Sun, 06 Jul 2014 18:46:25 +0000 Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by waterlily.siamics.net with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1X3rS6-0000OH-7y for submit@debbugs.gnu.org; Mon, 07 Jul 2014 01:46:18 +0700 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtp (Exim 4.80) (envelope-from ) id 1X3rQw-0001eC-2Z for submit@debbugs.gnu.org; Mon, 07 Jul 2014 01:45:06 +0700 From: Ivan Shmakov To: submit@debbugs.gnu.org Subject: eww-submit mishandles the POST method, no action forms Date: Sun, 06 Jul 2014 18:45:05 +0000 Message-ID: <8738eeconi.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.7 (/) Package: emacs As evidenced with the form at [1], EWW currently (as of 36634f669f2c) mishandles the case where an HTML form uses =E2=80=98method=3D"POST"=E2=80=99 but specifies no =E2=80=98action=E2=80= =99 attribute. Namely, instead of interpreting missing =E2=80=98action=E2=80=99 as meaning =E2=80= =9Cthis very same URI=E2=80=9D, EWW uses the URI with the =E2=80=98path=E2=80=99 compon= ent discarded. Granted, missing =E2=80=98action=E2=80=99 is special-cased for GET forms: 1034 (if (cdr (assq :action form)) 1035 (shr-expand-url (cdr (assq :action form)) 1036 eww-current-url) 1037 eww-current-url) While POST forms get no such treatment: 1030 (eww-browse-url (shr-expand-url (cdr (assq :action form)) 1031 eww-current-url))) However, I believe that the real culprit is shr-expand-url, which mishandles the nil =E2=80=98uri=E2=80=99 case: (mapcar (lambda (x) (shr-expand-url x "http://example.com/welcome/")) '("hello" "/world" nil)) ;; =E2=87=92 ("http://example.com/welcome/hello" "http://example.com/world" "http://example.com") My expectation for the last result would be the =E2=80=98base=E2=80=99 arg= ument unchanged (i.=C2=A0e., http://example.com/welcome/.) Thus, I suggest changing shr-expand-url to return not the 0th element of the (parsed) =E2=80=98base=E2=80=99 (see below), but the 3rd. 596 (cond ((or (not url) 597 (not base) 598 (string-match "\\`[a-z]*:" url)) 599 ;; Absolute URL. 600 (or url (car base))) [1] https://tools.wmflabs.org/guc/?user=3D2001:db8:1337::cafe --=20 FSF associate member #7257 http://boycottsystemd.org/ From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 14 14:50:32 2014 Received: (at 17958) by debbugs.gnu.org; 14 Aug 2014 18:50:33 +0000 Received: from localhost ([127.0.0.1]:43520 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XI06a-0001tF-Cu for submit@debbugs.gnu.org; Thu, 14 Aug 2014 14:50:32 -0400 Received: from fely.am-1.org ([78.47.74.50]:50509) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XI06X-0001sv-Cj; Thu, 14 Aug 2014 14:50:30 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:Sender:References:Subject:To:From; bh=DNuVgY2tpMs1olTw03iLlfDg+CH3KgRnHGu7hK2FpV4=; b=n5OwQD3rQq8/a1p05yU3p5JZfA117fv8D85URlfryb0WyStqN+eZ5siJpgtJG1ElJvH+jGk8TB3U/+/Q9LaLbv6LG7McrU3HvFTy2Nf7PaZXDoR9iYr2wgNaUlMjMDESu8keIfbITvGdwElmjyEvtFpYn21zc+QHFpbRY1EJPZA=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1XI06V-0003Vs-Jh; Thu, 14 Aug 2014 18:50:28 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1XI06O-0002Lu-KP; Fri, 15 Aug 2014 01:50:20 +0700 From: Ivan Shmakov To: control@debbugs.gnu.org, 17958@debbugs.gnu.org Subject: SHR: base handling broken (shr-parse-base, shr-expand-url) References: <8738eeconi.fsf@violet.siamics.net> Date: Thu, 14 Aug 2014 18:50:20 +0000 In-Reply-To: <8738eeconi.fsf@violet.siamics.net> (Ivan Shmakov's message of "Sun, 06 Jul 2014 18:45:05 +0000") Message-ID: <871tsirjmb.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 17958 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.7 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable retitle 17958 SHR: base handling broken (shr-parse-base, shr-expand-url)=20 tag 17958 + patch thanks >>>>> Ivan Shmakov writes: [=E2=80=A6] > However, I believe that the real culprit is shr-expand-url, which > mishandles the nil =E2=80=98uri=E2=80=99 case: > (mapcar (lambda (x) (shr-expand-url x "http://example.com/welcome/")) > '("hello" "/world" nil)) > ;; =E2=87=92 > ("http://example.com/welcome/hello" > "http://example.com/world" > "http://example.com") > My expectation for the last result would be the =E2=80=98base=E2=80=99 a= rgument > unchanged (i.=C2=A0e., http://example.com/welcome/.) > Thus, I suggest changing shr-expand-url to return not the 0th element > of the (parsed) =E2=80=98base=E2=80=99 (see below), but the 3rd. > 596 (cond ((or (not url) > 597 (not base) > 598 (string-match "\\`[a-z]*:" url)) > 599 ;; Absolute URL. > 600 (or url (car base))) > [1] https://tools.wmflabs.org/guc/?user=3D2001:db8:1337::cafe As it seems, there=E2=80=99s one more issue with SHR =E2=80=9Cbase=E2=80= =9D handling. Namely, the URI may actually itself be relative, and SHR fails to handle that properly. As per [2]: To set the frozen base URL, resolve the value of the element's href content attribute relative to the Document's fallback base URL; if this is successful, set the frozen base URL to the resulting absolute URL, otherwise, set the frozen base URL to the fallback base URL. The SHR behavior doesn=E2=80=99t match the above. Consider, e.=C2=A0g.: (let ((shr-base (shr-parse-base "http://example.org/"))) (shr-tag-base '((:href . "/relative"))) shr-base) ;; =E2=87=92 ("" "/" nil "/relative") With the patch MIMEd (which also fixes the issue described in my initial bug report), it instead gives what I deem to be the correct result: (let ((shr-base (shr-parse-base "http://example.org/"))) (shr-tag-base '((:href . "/relative"))) shr-base) ;; =E2=87=92 ("http://example.org" "/" "http" "http://example.org/relative") For proper compliance to the specification, SHR should also ignore all the elements but the first one, but I guess that may be fixed separately. The relative URIs appear, e.=C2=A0g., on the Internet Wayback Machine archive pages, when the original page uses the element. [2] http://www.w3.org/TR/html5/document-metadata.html#the-base-element --=20 FSF associate member #7257 http://boycottsystemd.org/ =E2=80=A6 3013 B6A0= 230E 334A --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable --- a/lisp/net/shr.el +++ b/lisp/net/shr.el @@ -574,6 +574,8 @@ size, and full-buffer size." ;; Always chop off anchors. (when (string-match "#.*" url) (setq url (substring url 0 (match-beginning 0)))) + ;; NB: URI may itself be relative to the document=E2= =80=99s URI + (setq url (shr-expand-url url)) (let* ((parsed (url-generic-parse-url url)) (local (url-filename parsed))) (setf (url-filename parsed) "") @@ -592,6 +594,7 @@ size, and full-buffer size." (defun shr-expand-url (url &optional base) (setq base (if base + ;; shr-parse-base should never call this with non-nil base! (shr-parse-base base) ;; Bound by the parser. shr-base)) @@ -600,8 +603,8 @@ size, and full-buffer size." (cond ((or (not url) (not base) (string-match "\\`[a-z]*:" url)) - ;; Absolute URL. - (or url (car base))) + ;; Absolute or empty URI + (or url (nth 3 base))) ((eq (aref url 0) ?/) (if (and (> (length url) 1) (eq (aref url 1) ?/)) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Nov 04 11:44:03 2014 Received: (at 17958) by debbugs.gnu.org; 4 Nov 2014 16:44:03 +0000 Received: from localhost ([127.0.0.1]:49019 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XlhD9-0002ih-1L for submit@debbugs.gnu.org; Tue, 04 Nov 2014 11:44:03 -0500 Received: from mail-qg0-f42.google.com ([209.85.192.42]:35675) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XlhD7-0002iM-ED for 17958@debbugs.gnu.org; Tue, 04 Nov 2014 11:44:01 -0500 Received: by mail-qg0-f42.google.com with SMTP id i50so9880014qgf.15 for <17958@debbugs.gnu.org>; Tue, 04 Nov 2014 08:44:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lifelogs.com; s=google; h=from:to:cc:subject:organization:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:user-agent :mime-version:content-type:content-transfer-encoding; bh=MU29flMb4zirXD8pv4s7TvGZSenOPH4L7FHz+jqVxMk=; b=oy8sB+5c6PhyjrqJchOUAt9Gcyo61Toy0ugEo5wBh/vCg+I7M4m4Wu6BHe2ghFWs6h Zk6toJ0XJaa61OAPrPOjUq4wdFx75xwCcswRCx+0aMCk8ZuGZj8oTFIV3OiYLpSDhT0Y WjT2DOVfVfrSdI1YyIvUoGqcocHqEFbUbcnsU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:organization:references :mail-copies-to:gmane-reply-to-list:date:in-reply-to:message-id :user-agent:mime-version:content-type:content-transfer-encoding; bh=MU29flMb4zirXD8pv4s7TvGZSenOPH4L7FHz+jqVxMk=; b=eE8wtlFKZEP9Dqsz28uQWzqSmqcuSWe7nnn3+jkJ6lS+H+Qrkfqj0Q11xW7DE2RrH5 oaQFoadZDSTCpFEmfifb3sIuLwRP/noc7A2zs2hNLeQWFs/LNkCfc9HWveKS6OKr5Nox v9mNP+MQWJWdtyye8UE4Fys9hH5ATymG2Gz33dTUZOVWjkHzOWKk0siIYXZZ3vznmV+o nEvZ6X4DjuiL4Og0Cc72Wz6wAHU62D/XYEYlLCwRiCnBzpn8dreyNj+/AAAmKk9kHzrZ J+XgYvnYXj5QETrBY6Ya9gNq3lbXYJ3KoMzgK3/mCSBYa9kJcFnBraVc31J84xDxmR7y S6fg== X-Gm-Message-State: ALoCoQlUKRhoDPzPhG04ZL/cbLX1E95aPp8UFnk511Sochr8tlt7IpHH4tppc16QqnLMzNZdhIqx X-Received: by 10.140.84.106 with SMTP id k97mr54161651qgd.76.1415119433420; Tue, 04 Nov 2014 08:43:53 -0800 (PST) Received: from flea (c-98-229-61-72.hsd1.ma.comcast.net. [98.229.61.72]) by mx.google.com with ESMTPSA id c63sm785773qgf.14.2014.11.04.08.43.52 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 04 Nov 2014 08:43:52 -0800 (PST) From: Ted Zlatanov To: Ivan Shmakov Subject: Re: bug#17958: SHR: base handling broken (shr-parse-base, shr-expand-url) Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos References: <8738eeconi.fsf@violet.siamics.net> <871tsirjmb.fsf@violet.siamics.net> X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Tue, 04 Nov 2014 11:44:07 -0500 In-Reply-To: <871tsirjmb.fsf@violet.siamics.net> (Ivan Shmakov's message of "Thu, 14 Aug 2014 18:50:20 +0000") Message-ID: <8761eu7w6g.fsf@lifelogs.com> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 17958 Cc: 17958@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.7 (/) On Thu, 14 Aug 2014 18:50:20 +0000 Ivan Shmakov wrote:=20 >> Thus, I suggest changing shr-expand-url to return not the 0th element >> of the (parsed) =E2=80=98base=E2=80=99 (see below), but the 3rd. ... IS> With the patch MIMEd (which also fixes the issue described in my IS> initial bug report), it instead gives what I deem to be the IS> correct result: IS> (let ((shr-base (shr-parse-base "http://example.org/"))) IS> (shr-tag-base '((:href . "/relative"))) IS> shr-base) IS> ;; =E2=87=92 IS> ("http://example.org" "/" "http" "http://example.org/relative") This seems reasonable to me as far as usability but Lars will have to review the patch for correctness. Ted From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 13 13:42:22 2014 Received: (at 17958) by debbugs.gnu.org; 13 Nov 2014 18:42:22 +0000 Received: from localhost ([127.0.0.1]:59678 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XozLa-00063k-2y for submit@debbugs.gnu.org; Thu, 13 Nov 2014 13:42:22 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:42894) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XozLX-00063S-St; Thu, 13 Nov 2014 13:42:21 -0500 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1XozLC-0004aX-3p; Thu, 13 Nov 2014 19:41:58 +0100 From: Lars Magne Ingebrigtsen To: Ivan Shmakov Subject: Re: bug#17958: SHR: base handling broken (shr-parse-base, shr-expand-url) References: <8738eeconi.fsf@violet.siamics.net> <871tsirjmb.fsf@violet.siamics.net> X-Now-Playing: Eurythmics's _Touch Dance_: "Cool Blue" X-Hashcash: 1:23:141113:ivan@siamics.net::kXy2aq1j0lY9F5t9:090DR X-Hashcash: 1:23:141113:control@debbugs.gnu.org::tDDu6u4fw9dwXNfp:00000000000000000000000000000000000000kRLo X-Hashcash: 1:23:141113:17958@debbugs.gnu.org::A9A8KdKkmqOJpwgA:0000000000000000000000000000000000000000jiSk Date: Thu, 13 Nov 2014 19:41:57 +0100 In-Reply-To: <871tsirjmb.fsf@violet.siamics.net> (Ivan Shmakov's message of "Thu, 14 Aug 2014 18:50:20 +0000") Message-ID: User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=shift_jis Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1XozLC-0004aX-3p X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1416508918.24842@4O98+UrCfr3L3yqiHdHQWQ X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 17958 Cc: 17958@debbugs.gnu.org, control@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.0 (/) Ivan Shmakov writes: > (let ((shr-base (shr-parse-base "http://example.org/"))) > (shr-tag-base '((:href . "/relative"))) > shr-base) > ;; =81=CB > ("" "/" nil "/relative") > > With the patch MIMEd (which also fixes the issue described in my > initial bug report), it instead gives what I deem to be the > correct result: > > (let ((shr-base (shr-parse-base "http://example.org/"))) > (shr-tag-base '((:href . "/relative"))) > shr-base) > ;; =81=CB > ("http://example.org" "/" "http" "http://example.org/relative") Thanks; applied. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 13 13:42:22 2014 Received: (at control) by debbugs.gnu.org; 13 Nov 2014 18:42:22 +0000 Received: from localhost ([127.0.0.1]:59676 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XozLZ-00063i-LL for submit@debbugs.gnu.org; Thu, 13 Nov 2014 13:42:21 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:42893) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XozLX-00063K-JG for control@debbugs.gnu.org; Thu, 13 Nov 2014 13:42:20 -0500 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1XozLE-0004ag-UI for control@debbugs.gnu.org; Thu, 13 Nov 2014 19:42:00 +0100 Date: Thu, 13 Nov 2014 19:42:00 +0100 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #17958 X-MailScanner-ID: 1XozLE-0004ag-UI X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1416508921.00851@w9gZTUW5RpYPq1zADch8fQ X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.0 (/) tags 17958 fixed close 17958 25.1 From unknown Sat Aug 16 10:46: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: Fri, 12 Dec 2014 12:24:06 +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