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-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 60AD91F66E for ; Thu, 13 Aug 2020 20:49:07 +0000 (UTC) From: Eric Wong To: cmogstored-public@yhbt.net Subject: [PATCH] doc: add IMAPS, NNTPS and .onion archive URLs Date: Thu, 13 Aug 2020 20:49:07 +0000 Message-Id: <20200813204907.10023-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: public-inbox.org started supporting IMAP + IMAPS a few months ago, and has always supported Tor .onions via NNTP. Non-TLS is still supported for older systems and users with oppressive firewalls. --- HACKING | 10 ++++++++-- README | 13 +++++++++++-- build-aux/txt2pre | 2 +- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/HACKING b/HACKING index 2008261..e0fee0e 100644 --- a/HACKING +++ b/HACKING @@ -51,6 +51,12 @@ subscribe by sending an email to and answering the confirmation. HTML archives are available at https://yhbt.net/cmogstored-public/ -and via NNTP: +and via NNTP(S) and IMAP(S): - nntp://news.public-inbox.org/inbox.comp.file-systems.mogilefs.cmogstored + nntps://news.public-inbox.org/inbox.comp.file-systems.mogilefs.cmogstored + imaps://news.public-inbox.org/inbox.comp.file-systems.mogilefs.cmogstored.0 + +Tor users may also use .onions: + + nntp://ou63pmih66umazou.onion/inbox.comp.file-systems.mogilefs.cmogstored + imap://ou63pmih66umazou.onion/inbox.comp.file-systems.mogilefs.cmogstored.0 diff --git a/README b/README index 995206e..36a84d3 100644 --- a/README +++ b/README @@ -51,9 +51,18 @@ No subscription is neccessary, so reply-to-all on replies. HTML email is not welcome and will be bounced. Our archives are at https://yhbt.net/cmogstored-public/ -and via NNTP: +and via NNTP(S) and IMAP(S): - nntp://news.public-inbox.org/inbox.comp.file-systems.mogilefs.cmogstored + nntps://news.public-inbox.org/inbox.comp.file-systems.mogilefs.cmogstored + imaps://news.public-inbox.org/inbox.comp.file-systems.mogilefs.cmogstored.0 + +Tor users may also use .onions: + + nntp://ou63pmih66umazou.onion/inbox.comp.file-systems.mogilefs.cmogstored + imap://ou63pmih66umazou.onion/inbox.comp.file-systems.mogilefs.cmogstored.0 + +AUTH=ANONYMOUS is supported if your IMAP(S) client supports it, +but any username + password combination also works. We also piggy-back onto the public MogileFS mailing list for public discussions: diff --git a/build-aux/txt2pre b/build-aux/txt2pre index 0e1b2a2..e7b94f5 100755 --- a/build-aux/txt2pre +++ b/build-aux/txt2pre @@ -37,7 +37,7 @@ unless (defined $title) { # temporarily swap > for escape so our s!! to add href works. # there's probably a way to do this with only a single s!! ... $str =~ s!>!\e!g; -$str =~ s!\b((nntp|ftp|https?)://[\w+\+\&\?\.\%\;/#=\!\@-]+)!$1!g; $str =~ s!\e!>!g; # swap escapes back to >