From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 629EA1FD99 for ; Tue, 16 Aug 2016 07:49:56 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] HACKING: minor updates and add to the website Date: Tue, 16 Aug 2016 07:49:56 +0000 Message-Id: <20160816074956.18777-1-e@80x24.org> List-Id: Also, at least add one of the Tor mirrors (the rest will be discoverable through the mirrors themselves). --- Documentation/include.mk | 3 ++- HACKING | 19 +++++++++++++++---- README | 5 +++++ 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/Documentation/include.mk b/Documentation/include.mk index 9427887..396a258 100644 --- a/Documentation/include.mk +++ b/Documentation/include.mk @@ -4,7 +4,8 @@ all:: RSYNC = rsync RSYNC_DEST = public-inbox.org:/srv/public-inbox/ -docs := README COPYING INSTALL TODO $(shell git ls-files 'Documentation/*.txt') +docs := README COPYING INSTALL TODO HACKING +docs += $(shell git ls-files 'Documentation/*.txt') INSTALL = install POD2MAN ?= pod2man POD2MAN_OPTS = -v --stderr -d 1994-10-02 -c 'public-inbox user manual' diff --git a/HACKING b/HACKING index a766820..3c2235a 100644 --- a/HACKING +++ b/HACKING @@ -1,8 +1,14 @@ hacking public-inbox -------------------- -Send all patches via to our self-hosting inbox at meta@public-inbox.org -It is archived at . +Send all patches and "git request-pull"-formatted emails to our +self-hosting inbox at meta@public-inbox.org +It is archived at: https://public-inbox.org/meta/ +and http://hjrcffqmbrq6wope.onion/meta/ (using Tor) + +Contributions are email-driven, just like contributing to git +itself or the Linux kernel; however anonymous and pseudonymous +contributions will always be welcome. Please consider our goals in mind: @@ -37,5 +43,10 @@ in scripting languages (currently Perl 5). Performance should be reasonably good for server administrators, too, and we will sacrifice features to achieve predictable performance. -See design_www.txt and design_notes.txt in the Documentation/ directory -for design decisions made during development. +See design_www.txt and design_notes.txt in the Documentation/ +directory for design decisions made during development. + +For now, one may optionally subscribe to the mailing list by +sending an email to: meta+subscribe@public-inbox.org +(and confirming). However, reading over the mailing list is +the least reliable method of reading a public-inbox. diff --git a/README b/README index f56d68d..7618727 100644 --- a/README +++ b/README @@ -111,6 +111,11 @@ The archives are readable via NNTP or HTTP: nntp://news.public-inbox.org/inbox.comp.mail.public-inbox.meta https://public-inbox.org/meta/ +And as Tor hidden services: + + http://hjrcffqmbrq6wope.onion/meta/ + nntp://hjrcffqmbrq6wope.onion/inbox.comp.mail.public-inbox.meta + You may also clone all messages via git: git clone --mirror https://public-inbox.org/meta/ -- EW