From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.0.0.0/16 X-Spam-Status: No, score=-3.6 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out2.migadu.com (out2.migadu.com [IPv6:2001:41d0:2:aacc::]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 8DE5D1F4D8 for ; Fri, 6 May 2022 00:19:06 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1651796305; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=l8thhqTpXXkRhTNwkZ2gaMBJHUJSzDIqX9j4oMhIlfw=; b=b91Gh7Oy7H8qVYl1Xwr4yg9FzMsOehUSF6R5BbZL6dVrIvZueqdfIcNwTVphYNrttUSis/ 1MGJaeJdynUjSz8vC5mNaqo2BT4lkA6m4l/jSscpawREI8PaM5bciN2Bn9c/4EOTUymMFe pXlfF88jlKnnaq42AnA03afEo+nD/Amsk/Q0atA09Vns6U4U35o7xvoyfS/JtjgWKx47Le hCnbFpuTBIzpYVizgfp3k2JHKwMQYvkVcp1/KvKP1ZznHl+pzMV5zddNPbUV77nETnLIJv 6YetCXx8OsxLqk1d8v3nSehdKXm/pclqH4uQMzOjWUTrVGvigeSud2kZmma92g== From: Kyle Meyer To: Eric Wong Cc: meta@public-inbox.org Subject: Re: [PATCH] public-inbox-netd: a multi-protocol superserver In-Reply-To: <20220505105537.20576-1-e@80x24.org> References: <20220505105537.20576-1-e@80x24.org> Date: Thu, 05 May 2022 20:18:23 -0400 Message-ID: <87levfv7hs.fsf@kyleam.com> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyleam.com List-Id: Eric Wong writes: > Since we'll be adding POP3 as our 4th network protocol; asking > admins to run yet another daemon on top of existing -httpd, > -nntpd, -imapd is a burden and a waste of system resources > given the amount of code and file handles shared. > > The goal of public-inbox-netd is to be able to replace all > existing read-only daemons with a single process to save memory > and reduce administrative overhead; hopefully encouraging more > users to self-host their own mirrors. Nice, thanks. > diff --git a/Documentation/public-inbox-netd.pod b/Documentation/public-inbox-netd.pod > new file mode 100644 > index 00000000..d6520608 > --- /dev/null > +++ b/Documentation/public-inbox-netd.pod [...] > +=item --key /path/to/key > + > +The default private TLS certificate key for optional TLS support > +if the C option is not given with C<--listen>. The private > +key may concatenated into the path used by C<--cert>, in which case this > +option is not needed. s/may concatenated/may be concatenated/ (It looks like -imapd and -nntpd pods have the same text, and both of those are also missing this "be".)