From unknown Tue Jun 17 01:43:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34617: 27.0.50; Can't bind a server process to all interfaces? Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 22 Feb 2019 13:46:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 34617 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 34617@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.155084315116942 (code B ref -1); Fri, 22 Feb 2019 13:46:01 +0000 Received: (at submit) by debbugs.gnu.org; 22 Feb 2019 13:45:51 +0000 Received: from localhost ([127.0.0.1]:47677 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxB9C-0004PB-U4 for submit@debbugs.gnu.org; Fri, 22 Feb 2019 08:45:51 -0500 Received: from eggs.gnu.org ([209.51.188.92]:38925) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxB9A-0004Oy-S4 for submit@debbugs.gnu.org; Fri, 22 Feb 2019 08:45:49 -0500 Received: from lists.gnu.org ([209.51.188.17]:54044) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gxB92-0006im-5d for submit@debbugs.gnu.org; Fri, 22 Feb 2019 08:45:41 -0500 Received: from eggs.gnu.org ([209.51.188.92]:53224) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gxB90-0005nY-MO for bug-gnu-emacs@gnu.org; Fri, 22 Feb 2019 08:45:40 -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.0 required=5.0 tests=BAYES_40,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gxB7U-0004eu-Lg for bug-gnu-emacs@gnu.org; Fri, 22 Feb 2019 08:44:05 -0500 Received: from quimby.gnus.org ([80.91.231.51]:43006) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gxB7U-0004LP-9I for bug-gnu-emacs@gnu.org; Fri, 22 Feb 2019 08:44:04 -0500 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1gxB7E-0007Wn-K7 for bug-gnu-emacs@gnu.org; Fri, 22 Feb 2019 14:43:50 +0100 From: Lars Ingebrigtsen Date: Fri, 22 Feb 2019 14:43:48 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 80.91.231.51 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 0.0 (/) 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 (-) I'm looking to bind a server process to all interfaces on the machine. If I say: (make-network-process :name name :family 'ipv4 :service port :host (system-name) :server t)) then the process won't be listening to the localhost address, and if I say :host nil, it'll only be listening to the localhost address. Am I missing something, or does Emacs just not have a way to listen to INADDR_ANY? The code in make-network-process seems to imply that (and could probably do with a slight rewrite): /* :host HOST -- hostname, ip address, or 'local for localhost. */ host = Fplist_get (contact, QChost); if (NILP (host)) { /* The "connection" function gets it bind info from the address we're given, so use this dummy address if nothing is specified. */ #ifdef HAVE_LOCAL_SOCKETS if (family != AF_LOCAL) #endif { if (family == AF_INET6) host = build_string ("::1"); else host = build_string ("127.0.0.1"); } } else { if (EQ (host, Qlocal)) { /* Depending on setup, "localhost" may map to different IPv4 and/or IPv6 addresses, so it's better to be explicit (Bug#6781). */ if (family == AF_INET6) host = build_string ("::1"); else host = build_string ("127.0.0.1"); } CHECK_STRING (host); } In GNU Emacs 27.0.50 (build 62, x86_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2019-02-11 built on stories Repository revision: 2860f6cec56b02120b0b62cb3733c00a9e5359db Repository branch: master Windowing system distributor 'The X.Org Foundation', version 11.0.11902000 System Description: Debian GNU/Linux 9 (stretch) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Tue Jun 17 01:43:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34617: 27.0.50; Can't bind a server process to all interfaces? Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 22 Feb 2019 13:52:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 34617 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 34617@debbugs.gnu.org Received: via spool by 34617-submit@debbugs.gnu.org id=B34617.155084352017536 (code B ref 34617); Fri, 22 Feb 2019 13:52:02 +0000 Received: (at 34617) by debbugs.gnu.org; 22 Feb 2019 13:52:00 +0000 Received: from localhost ([127.0.0.1]:47686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBFA-0004Ym-0O for submit@debbugs.gnu.org; Fri, 22 Feb 2019 08:52:00 -0500 Received: from quimby.gnus.org ([80.91.231.51]:34714) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBF7-0004Ya-Bj for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 08:51:59 -0500 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1gxBF3-0007Zt-Kn for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 14:51:55 +0100 From: Lars Ingebrigtsen References: Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEUhCwYfCQQdBwJBLx4b BQHf4OIYAwGpmW4UkMKrAAACUUlEQVQ4jVWTQY8aMQyFHWjZa5JVeyZuaK+sRpQzUeAPoIgrZVHO SCOav99nZxDFWi1SvvHzc2JTyhIH+RdcZMfeO0MIHNZrrRl/Epw55cTs6PF5ztcUE4cYPDu3nBGO r3J61e9DTJCasYAMpUOuB0ilzHEHGc8BUjj4HF6CA9ml1Iirgji1od3xcz857+AqpkNaldZG/Xjb AI3zXuzWLBmTjOT6ENySIszuSzlKTzQMGwAyooX2JOOmgOaSYmxA81BCjUJxsaQvZ1qjPqG6dF7T vhxNrfUSM9HXUpzzxopdSN0OVcPSG4A1hibwse7gbOelWAgZigpMWyi41j93uHK2Z+zLexvrFPfi qL/HNe9PP9B61TqXDYpTQB8Aq9M7Lmr8wPnP8wZ90CS1Os3/nj9bEwdhU4K1HaDB+e8KIA6WmzJz j+KrMqzrHOC2OBNu1+i1KxhHGgBGALmSDhLAsclTtEb2TW5X5odj5hWer8ea5BKNFIHS7lt5kPVW 3mNqMGeA/rjysE8Qk4BtTxFgyOgwMIvUBPRpFTDGEo9zGvR83DylpozhruRZPHKEXUgN23FEM0+Q ctAafeA0w6oU65S8AN0cuatfIt5dyY+aIiSkJxgVaDD8ChgVqOkOsJyaoSma0OwEEs9fF2fqHMAz 9s5zMtb20RFgOAAwFjPqFnuLO8ScEBYRy8q6z9HLzmA+rUrhRKzV+r1esK4ObLILCQTJJGNygtfR pR0KJ85h2d17pDjqUpBB1gRm1preh9gVrYB8Q/9HlMlKKWaY9r2uSP0D6tfxm5TOuhEAAAAASUVO RK5CYII= Date: Fri, 22 Feb 2019 14:51:53 +0100 In-Reply-To: (Lars Ingebrigtsen's message of "Fri, 22 Feb 2019 14:43:48 +0100") Message-ID: 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: Somebody on irc told me that :host "0.0.0.0" will give me the INADDR_ANY thing I want... So perhaps that should just be added to the doc string? 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-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 (-) Somebody on irc told me that :host "0.0.0.0" will give me the INADDR_ANY thing I want... So perhaps that should just be added to the doc string? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Tue Jun 17 01:43:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34617: 27.0.50; Can't bind a server process to all interfaces? Resent-From: Robert Pluim Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 22 Feb 2019 14:01:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 34617 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Lars Ingebrigtsen Cc: 34617@debbugs.gnu.org Received: via spool by 34617-submit@debbugs.gnu.org id=B34617.155084402818540 (code B ref 34617); Fri, 22 Feb 2019 14:01:02 +0000 Received: (at 34617) by debbugs.gnu.org; 22 Feb 2019 14:00:28 +0000 Received: from localhost ([127.0.0.1]:47690 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBNL-0004oy-Sd for submit@debbugs.gnu.org; Fri, 22 Feb 2019 09:00:28 -0500 Received: from mail-wm1-f45.google.com ([209.85.128.45]:54061) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBNK-0004ok-06 for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 09:00:26 -0500 Received: by mail-wm1-f45.google.com with SMTP id e74so2042890wmg.3 for <34617@debbugs.gnu.org>; Fri, 22 Feb 2019 06:00:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:mail-copies-to:gmane-reply-to-list :date:in-reply-to:message-id:mime-version; bh=HSsw+OtCKgmAYnG4zywdfIUAetco0pL9oN7F6i4fPxA=; b=lBhsAOVK1Dzk0RXhoiorsNA7oBMppOjtjcJwg2LV+jIOJqwYWn0izNXRTo4youF2wj YyAtO8VlhysXTFlVfn58/0eRlHX3bmuiudJUNAGFndnTIVtryeHrHrjeMCKFIrjafP6M 5OLHz0f85WhDw0jSi1uSEx7dYeGK9VcGLEadGpreJ/Ybiz6JK9OgjEuux3TstMCOf+3N nUnLZ2/mjjJCADWaAOiddHp8PRG3M5GsspHQnk8A+Rdb72YIVlroF5fkL05Osl3KXP50 DQmC9KXQW5kh6Qsd74D/qKo4fPsoojeWUjVfRXflY7qEPZZaafKVXsMC9kFgwWL031Ti RjsQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:mime-version; bh=HSsw+OtCKgmAYnG4zywdfIUAetco0pL9oN7F6i4fPxA=; b=p+12nkUBRHlYnfM1+PKjwIOxMkDU8Ns3gZARjynkFc/NFl7PwBPZA5fYvBYfEx5hAG g1FiTkQzVwZQw6nonFvJEU8jnBibf8CxhnQyW2/x9VFwqSfxpC4MdVszMJogwMb8/LCJ 0sHFGS5bVfLmMOEx97hP496xZBEjkm0woiKoEXLzH+Z93TJ4jhtc93eYGc/jTfK94wOL e6AgOAA7i7yevF7XiIO64JKs1thgpE/4hr8WBaZoSIrHrHdCyLu2uAYLuH10vF+Jtpiq 4Y0IBj2TKHpwm8p3TBPdnM0LHVk09ClE+re+MF4tlaUsfTuKPfmbjlLfZ8ZvdAOym3V6 uMQA== X-Gm-Message-State: AHQUAuaYbbbJrDx20ESKXueNYKi4FRd3k8yAGpWbEF7IIvvz2jQX8UKU SUsTZYDB/An7sxZ1eRvyVIIneh3li8M= X-Google-Smtp-Source: AHgI3IaNSOfHjvaMd7Rlb9gZHUJVqSjoiTby6Wm39IS9RUuj3VqI9Ri0c1K4u3Uu6rQoW0vxTIQKZA== X-Received: by 2002:a1c:96c5:: with SMTP id y188mr2656051wmd.103.1550844019531; Fri, 22 Feb 2019 06:00:19 -0800 (PST) Received: from rpluim-mac ([149.5.228.1]) by smtp.gmail.com with ESMTPSA id n129sm1447547wmf.21.2019.02.22.06.00.17 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Fri, 22 Feb 2019 06:00:18 -0800 (PST) From: Robert Pluim References: Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Fri, 22 Feb 2019 15:00:17 +0100 In-Reply-To: (Lars Ingebrigtsen's message of "Fri, 22 Feb 2019 14:43:48 +0100") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) 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 (-) Lars Ingebrigtsen writes: > I'm looking to bind a server process to all interfaces on the machine. > If I say: > > (make-network-process > :name name > :family 'ipv4 > :service port > :host (system-name) > :server t)) > > then the process won't be listening to the localhost address, and if I > say :host nil, it'll only be listening to the localhost address. > > Am I missing something, or does Emacs just not have a way to listen to > INADDR_ANY? > Does :host "0.0.0.0" not work? Seems ok to me: (setq proc (make-network-process :name "foo" :family 'ipv4 :service 6666 :host "0.0.0.0" :server t)) M-x list-processes foo -- listen -- -- Main (network server on 0.0.0.0) foo <127.0.0... -- open foo <127.0.0.1:63650> -- Main (network connection to 127.0.0.1) foo <172.26.... -- open foo <172.26.128.66:63605> -- Main (network connection to 172.26.128.66) foo <172.26.... -- open foo <172.26.148.3:63628> -- Main (network connection to 172.26.148.3) Robert From unknown Tue Jun 17 01:43:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34617: 27.0.50; Can't bind a server process to all interfaces? Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 22 Feb 2019 14:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 34617 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 34617@debbugs.gnu.org Received: via spool by 34617-submit@debbugs.gnu.org id=B34617.155084435219156 (code B ref 34617); Fri, 22 Feb 2019 14:06:02 +0000 Received: (at 34617) by debbugs.gnu.org; 22 Feb 2019 14:05:52 +0000 Received: from localhost ([127.0.0.1]:47694 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBSa-0004yu-IE for submit@debbugs.gnu.org; Fri, 22 Feb 2019 09:05:52 -0500 Received: from quimby.gnus.org ([80.91.231.51]:35172) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBSW-0004yb-6A for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 09:05:51 -0500 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1gxBSP-0007gH-CL for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 15:05:45 +0100 From: Lars Ingebrigtsen References: Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAD1BMVEXi3+FiAhQaCxtxY20o HC4CkJilAAACPUlEQVQ4jV2T7dmrIAyGY+MApTrAa2QAIBlAIfvPdB6wtr1O+sdy8+STkLmzEyzp bG5ErCE8cyAAXQYw3WK9QJoCze5nSPh/uER7JeIcAtEFvPWLMUaD0w6eNFy5N1ysOO43cljCokMx CItI83IB2Bu4zgAaPcHTkqdwuToRvkgQrZG4bK/8BPBOtsxFpHpeiGXbM5zRMXuFd5xHs0dU67FS WFCX41MAdtJH0XFr3yD9ACWdq+Lb6y4bqdU3kJRmwS3XnQqA3gDVPRwhYtLeEk+XqzNsmh4N+miK PtBCXoHQoCUxtxqlqRAHenI417UDOOBkHHVuxBtA7kEKFADu1pQTzQOsp4gJXBFyLA7lpUCHRFiq KYjpPoBQypplW9mzVxxp2jHlHjyx1SqBD4UEAD/u86XnZBvS5RZW1X55GE90TCYxCuazvg+7qVEC aPHkq5DbrKDtFtoSNAfxr2TKEKm0xQDC6wt0Qnc1tNbnhgl9ALJqq66t0Wjx/pEwTmoRAD3rL0A1 FTNqC+XXR4EK8exIXbuivLaAVzXcdKAUXWt31YarUUrixEpWjxvUXesA/e2jRpSIPFOJdW+GDvaW XT3TDh4IHo9+Zsp3ahVDLqOQY7jhd9rW1+MCOzqEFRU/rn1tSQdAiqb+BxEGlsgQfbQEEi0a2xgt lolbldugqPLXS/R6/IIdMeRIXdEOti+QiMnkRTO5HrP+Amzs1McsejxcfgyA+zpL20v8D4w9L2he vFx5/QV4hncE+1X8Axe6lHvSvZ6DAAAAAElFTkSuQmCC Date: Fri, 22 Feb 2019 15:05:41 +0100 In-Reply-To: (Lars Ingebrigtsen's message of "Fri, 22 Feb 2019 14:51:53 +0100") Message-ID: 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: > Somebody on irc told me that > > :host "0.0.0.0" > > will give me the INADDR_ANY thing I want... So perhaps that should just > be added to the doc string? 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-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 (-) Lars Ingebrigtsen writes: > Somebody on irc told me that > > :host "0.0.0.0" > > will give me the INADDR_ANY thing I want... So perhaps that should just > be added to the doc string? And the same somebody pointed out that then you can't listen to ipv6 and ipv4 at the same time. Probably? So perhaps there should be a :host 'any thing to just listen to a port on all available interfaces... -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Tue Jun 17 01:43:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34617: 27.0.50; Can't bind a server process to all interfaces? Resent-From: Robert Pluim Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 22 Feb 2019 14:26:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 34617 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Lars Ingebrigtsen Cc: 34617@debbugs.gnu.org Received: via spool by 34617-submit@debbugs.gnu.org id=B34617.155084554021165 (code B ref 34617); Fri, 22 Feb 2019 14:26:02 +0000 Received: (at 34617) by debbugs.gnu.org; 22 Feb 2019 14:25:40 +0000 Received: from localhost ([127.0.0.1]:47711 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBlg-0005VF-Mi for submit@debbugs.gnu.org; Fri, 22 Feb 2019 09:25:40 -0500 Received: from mail-wm1-f49.google.com ([209.85.128.49]:40160) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBla-0005Uv-V2 for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 09:25:34 -0500 Received: by mail-wm1-f49.google.com with SMTP id t15so2119681wmi.5 for <34617@debbugs.gnu.org>; Fri, 22 Feb 2019 06:25:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:mail-copies-to:gmane-reply-to-list :date:in-reply-to:message-id:mime-version; bh=vu/HYcEqeVuPCBZZzLIsFj6JSmqeDeGRU8cna0o7ptU=; b=ALYpme1gjE5zdKvyzt1fZp1HV/O9LdXqQ2bec8Qr8+WdF9dSoxXYQxxt70ZfnFrOAZ Yd+d9591goIxGvB3Fa1UPe2u/KhVY0YTg3jNwA83tLUuTSw+pLkqk+HP1UlULVz7hqZ3 UPZ+ZLC53Q0SPSA0/eeYj3sd8Ee+P2lzmLkn1Nc7gLS135HXEGH8Hx5BrpFF1fK5liqj qZUzt/4h91XH/mOdo6+YhRRZB18wLxP9CT3qPv5EEbnECB7ESGYAeo8fU1aPR11zzm83 EE6ISivrD+rIELRz87L25p78VvMEqyT/hyLraHzSVwJwGxx3qINP9HiXkryHJ3bA39Ry lOzw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:mime-version; bh=vu/HYcEqeVuPCBZZzLIsFj6JSmqeDeGRU8cna0o7ptU=; b=CEObQC50hFLj2QdRjU4gT/PxKuZ5WDNASrXy1j364gpAzB0OE4fE4fjGAerdxU+bmX zXZ+bOxc4jGgo+Bwcge9nyaitCo76/tBKC1KcRaNq66PvyG45JCmOHCERCX7QDcS6aUT 2Zl4mMJG8m/S+11xi/oFngpfMSLTdpZARuq4ZQMRhRKXKSwRPD9Qq6azZOjf/cLjqd15 hpET8Wm30RuA139RKwx1CoQsRpfjz/akguGA6cv2/ENk+3vATlhrz4/pM6JcWkxfG1tw 4xKIv0AjYGupGkSN8P4gOpl/8D0QWViGsN3pmPYlJ0QpWOoUci2sV9UV9qqyqp3bHC1U w6Yw== X-Gm-Message-State: AHQUAuaCDFou4QHPvt1Y5rMCAzDwzyHoYKGEU9crKRRW7RmXSgD0u8BI /N3zJFw9c34SNvdmHKJxzwGLq7aOEnE= X-Google-Smtp-Source: AHgI3IawDYrH8rJlouROEu5MgN7zKOVi/Izcvsu/WuVlXcmildghQ7GONitN8N7h7ZsEkin5PwY0Xg== X-Received: by 2002:a1c:a797:: with SMTP id q145mr2802638wme.6.1550845524597; Fri, 22 Feb 2019 06:25:24 -0800 (PST) Received: from rpluim-mac ([149.5.228.1]) by smtp.gmail.com with ESMTPSA id a8sm1231090wrt.79.2019.02.22.06.25.23 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Fri, 22 Feb 2019 06:25:23 -0800 (PST) From: Robert Pluim References: Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Fri, 22 Feb 2019 15:25:22 +0100 In-Reply-To: (Lars Ingebrigtsen's message of "Fri, 22 Feb 2019 15:05:41 +0100") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) 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 (-) Lars Ingebrigtsen writes: > Lars Ingebrigtsen writes: > >> Somebody on irc told me that >> >> :host "0.0.0.0" >> >> will give me the INADDR_ANY thing I want... So perhaps that should just >> be added to the doc string? > > And the same somebody pointed out that then you can't listen to ipv6 and > ipv4 at the same time. Probably? > You can, by listening to "::" but it depends on the underlying stack whether it works or not. It works for me :-) > So perhaps there should be a > > :host 'any > > thing to just listen to a port on all available interfaces... Sure, as long as we make it error out if :family is specified, unless you want :family 'ipv6 :host 'any to mean 'listen only on IPv6' interfaces and similarly for 'ipv4. Robert From unknown Tue Jun 17 01:43:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34617: 27.0.50; Can't bind a server process to all interfaces? Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 22 Feb 2019 14:29:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 34617 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 34617@debbugs.gnu.org Received: via spool by 34617-submit@debbugs.gnu.org id=B34617.155084573721435 (code B ref 34617); Fri, 22 Feb 2019 14:29:02 +0000 Received: (at 34617) by debbugs.gnu.org; 22 Feb 2019 14:28:57 +0000 Received: from localhost ([127.0.0.1]:47716 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBou-0005Zd-V6 for submit@debbugs.gnu.org; Fri, 22 Feb 2019 09:28:57 -0500 Received: from quimby.gnus.org ([80.91.231.51]:35444) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxBot-0005ZS-1b for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 09:28:55 -0500 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1gxBoo-0007uI-7p for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 15:28:52 +0100 From: Lars Ingebrigtsen References: Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAD1BMVEXi3+FiAhQaCxtxY20o HC4CkJilAAACPUlEQVQ4jV2T7dmrIAyGY+MApTrAa2QAIBlAIfvPdB6wtr1O+sdy8+STkLmzEyzp bG5ErCE8cyAAXQYw3WK9QJoCze5nSPh/uER7JeIcAtEFvPWLMUaD0w6eNFy5N1ysOO43cljCokMx CItI83IB2Bu4zgAaPcHTkqdwuToRvkgQrZG4bK/8BPBOtsxFpHpeiGXbM5zRMXuFd5xHs0dU67FS WFCX41MAdtJH0XFr3yD9ACWdq+Lb6y4bqdU3kJRmwS3XnQqA3gDVPRwhYtLeEk+XqzNsmh4N+miK PtBCXoHQoCUxtxqlqRAHenI417UDOOBkHHVuxBtA7kEKFADu1pQTzQOsp4gJXBFyLA7lpUCHRFiq KYjpPoBQypplW9mzVxxp2jHlHjyx1SqBD4UEAD/u86XnZBvS5RZW1X55GE90TCYxCuazvg+7qVEC aPHkq5DbrKDtFtoSNAfxr2TKEKm0xQDC6wt0Qnc1tNbnhgl9ALJqq66t0Wjx/pEwTmoRAD3rL0A1 FTNqC+XXR4EK8exIXbuivLaAVzXcdKAUXWt31YarUUrixEpWjxvUXesA/e2jRpSIPFOJdW+GDvaW XT3TDh4IHo9+Zsp3ahVDLqOQY7jhd9rW1+MCOzqEFRU/rn1tSQdAiqb+BxEGlsgQfbQEEi0a2xgt lolbldugqPLXS/R6/IIdMeRIXdEOti+QiMnkRTO5HrP+Amzs1McsejxcfgyA+zpL20v8D4w9L2he vFx5/QV4hncE+1X8Axe6lHvSvZ6DAAAAAElFTkSuQmCC Date: Fri, 22 Feb 2019 15:28:50 +0100 In-Reply-To: (Robert Pluim's message of "Fri, 22 Feb 2019 15:25:22 +0100") Message-ID: 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: Robert Pluim writes: > You can, by listening to "::" but it depends on the underlying stack > whether it works or not. It works for me :-) That's a syntax I was definitely not aware of. :-) Is that new? 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-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 (-) Robert Pluim writes: > You can, by listening to "::" but it depends on the underlying stack > whether it works or not. It works for me :-) That's a syntax I was definitely not aware of. :-) Is that new? >> So perhaps there should be a >> >> :host 'any >> >> thing to just listen to a port on all available interfaces... > > Sure, as long as we make it error out if :family is specified, unless > you want > > :family 'ipv6 > :host 'any > > to mean 'listen only on IPv6' interfaces and similarly for 'ipv4. Yeah, I think that would be logical? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Tue Jun 17 01:43:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34617: 27.0.50; Can't bind a server process to all interfaces? Resent-From: Robert Pluim Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 22 Feb 2019 15:41:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 34617 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Lars Ingebrigtsen Cc: 34617@debbugs.gnu.org Received: via spool by 34617-submit@debbugs.gnu.org id=B34617.155085001529550 (code B ref 34617); Fri, 22 Feb 2019 15:41:02 +0000 Received: (at 34617) by debbugs.gnu.org; 22 Feb 2019 15:40:15 +0000 Received: from localhost ([127.0.0.1]:48489 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxCvr-0007gR-RG for submit@debbugs.gnu.org; Fri, 22 Feb 2019 10:40:15 -0500 Received: from mail-ed1-f67.google.com ([209.85.208.67]:42992) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gxCvm-0007fm-B7 for 34617@debbugs.gnu.org; Fri, 22 Feb 2019 10:40:10 -0500 Received: by mail-ed1-f67.google.com with SMTP id j89so2079344edb.9 for <34617@debbugs.gnu.org>; Fri, 22 Feb 2019 07:40:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:mail-copies-to:gmane-reply-to-list :date:in-reply-to:message-id:mime-version:content-transfer-encoding; bh=f/tnL0UuhVpoHtOQ05oXtRyKaAq8xSIATAR7tbBuwTE=; b=my5CoGwvm6+a9F71LjkPuseN0aqxiMOGusoimVGm/lpYiADxs85Wrh0iX/eqPc2EHv mEYIOu8etD5o00WuJi66IKQPcue/bmG1qw4DX4tiCl66RsfLXMNx76F9q2t8jQzAjfld 7Kj6wgzh0vppVPc6wtl/ygDgGYJNEUrQQbrAOCsr/OOeHwETQA2c4KCaLVVmfJbuu77X lAghXUnN2f5TDWiGr5qBZKvIZdryzOgUG1JPbohpSCrJOGEKcQg585niHo06QMfmHWv7 UOc1Ich0D+Ggy9VLzEPB0U/CZqZoFX+SGd0TrvxAEYGX/eBbafOPUeHM7/u3gPylXUBk jSvQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:mime-version :content-transfer-encoding; bh=f/tnL0UuhVpoHtOQ05oXtRyKaAq8xSIATAR7tbBuwTE=; b=KJg+8HJXppCsx6PkrPYcynv7wVsjG8UlWh4C4ENnzwegX9tExNqcfNc2A/gmGvM+tM cp3eDnUdTsRH1Gu1avZn2+uBB7v4Unk+EvFO/ucr+TMPrFyzG4P84IXAXMh4s4krZ4Nq z3TbB7KpdeOK3UPo5x1ZT8eaKjI8GqBQNPXEMYGFEbv/0l0B9ksgSVg5q5kwo6fpVjnJ hOMXBvM0QAnFnZiztPF+Guj5cVFX9Mt3W2iEQFgUf7WcZsUU6Z/oqnZyzE4K2m97SDPi 2aK3E+8QwIFWNPF6aCfoHZNrG7Ap8M2CLm2OHbFIeVemLRJ/JJ0NxMPejaq7pVCgzK4g WBPg== X-Gm-Message-State: AHQUAuafDpmfVhrGL0jhC0/ATyoldATucIwF8ixBh8jm5J8AFbwc+wKz RZlCjQvJn6DnXlgHmbP5Tompt241 X-Google-Smtp-Source: AHgI3Ibp9j3GjjwAFcUNgiu6ujZb7Bfz2ff6vc7tWCnU7vmTO93H35UEn9kCSBu7QHPuYjUPeeBjSg== X-Received: by 2002:a50:9964:: with SMTP id l33mr3651070edb.115.1550849999882; Fri, 22 Feb 2019 07:39:59 -0800 (PST) Received: from rpluim-mac ([149.5.228.1]) by smtp.gmail.com with ESMTPSA id n25sm481888edd.83.2019.02.22.07.39.57 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Fri, 22 Feb 2019 07:39:58 -0800 (PST) From: Robert Pluim References: Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Fri, 22 Feb 2019 16:39:56 +0100 In-Reply-To: (Lars Ingebrigtsen's message of "Fri, 22 Feb 2019 15:28:50 +0100") Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) 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 (-) Lars Ingebrigtsen writes: > Robert Pluim writes: > >> You can, by listening to "::" but it depends on the underlying stack >> whether it works or not. It works for me :-) > > That's a syntax I was definitely not aware of. :-) Is that new? > It=CA=BCs the IPv6 equivalent of INADDR_ANY, it=CA=BCs been around basically forever. >>> So perhaps there should be a >>> >>> :host 'any >>> >>> thing to just listen to a port on all available interfaces... >> >> Sure, as long as we make it error out if :family is specified, unless >> you want >> >> :family 'ipv6 >> :host 'any >> >> to mean 'listen only on IPv6' interfaces and similarly for 'ipv4. > > Yeah, I think that would be logical? I guess so, although :family 'ipv6 :host "::" currently results in listening on v4 as well for me here, so some work would be required to implement it. (why this sudden desire to listen to everything in Emacs? Are you re-implementing gmane in elisp? ;-) ) Robert From unknown Tue Jun 17 01:43:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#34617: 27.0.50; Can't bind a server process to all interfaces? Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 21 Sep 2019 08:01:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 34617 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 34617@debbugs.gnu.org Received: via spool by 34617-submit@debbugs.gnu.org id=B34617.156905281119524 (code B ref 34617); Sat, 21 Sep 2019 08:01:02 +0000 Received: (at 34617) by debbugs.gnu.org; 21 Sep 2019 08:00:11 +0000 Received: from localhost ([127.0.0.1]:59016 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBaJP-00054q-Fz for submit@debbugs.gnu.org; Sat, 21 Sep 2019 04:00:11 -0400 Received: from quimby.gnus.org ([80.91.231.51]:48452) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBaJN-00054f-LA for 34617@debbugs.gnu.org; Sat, 21 Sep 2019 04:00:09 -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 1iBaJI-0007lW-K2 for 34617@debbugs.gnu.org; Sat, 21 Sep 2019 10:00:08 +0200 From: Lars Ingebrigtsen References: Date: Sat, 21 Sep 2019 10:00:04 +0200 In-Reply-To: (Robert Pluim's message of "Fri, 22 Feb 2019 15:25:22 +0100") Message-ID: <8736gq2i63.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: Robert Pluim writes: > Lars Ingebrigtsen writes: > >> Lars Ingebrigtsen writes: >> >>> Somebody on irc told me that >>> >>> :host "0.0.0.0" >>> >>> will give me the INADDR_ANY thing I wan [...] 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-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 (-) Robert Pluim writes: > Lars Ingebrigtsen writes: > >> Lars Ingebrigtsen writes: >> >>> Somebody on irc told me that >>> >>> :host "0.0.0.0" >>> >>> will give me the INADDR_ANY thing I want... So perhaps that should just >>> be added to the doc string? >> >> And the same somebody pointed out that then you can't listen to ipv6 and >> ipv4 at the same time. Probably? > > You can, by listening to "::" but it depends on the underlying stack > whether it works or not. It works for me :-) I've now just mentioned this in the doc string. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sat Sep 21 04:00:17 2019 Received: (at control) by debbugs.gnu.org; 21 Sep 2019 08:00:17 +0000 Received: from localhost ([127.0.0.1]:59019 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBaJU-00055D-Qz for submit@debbugs.gnu.org; Sat, 21 Sep 2019 04:00:17 -0400 Received: from quimby.gnus.org ([80.91.231.51]:48464) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iBaJT-000554-6D for control@debbugs.gnu.org; Sat, 21 Sep 2019 04:00:15 -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 1iBaJQ-0007lh-9i for control@debbugs.gnu.org; Sat, 21 Sep 2019 10:00:14 +0200 Date: Sat, 21 Sep 2019 10:00:11 +0200 Message-Id: <871rwa2i5w.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #34617 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 34617 fixed close 34617 27.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 34617 fixed close 34617 27.1 quit