From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, T_RP_MATCHES_RCVD,URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 84C9F201BC for ; Wed, 30 Sep 2015 21:36:02 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] README: document NNTP access Date: Wed, 30 Sep 2015 21:36:02 +0000 Message-Id: <20150930213602.11001-1-e@80x24.org> List-Id: That's right, we now have our NNTP server running and are self-hosting a read-only news gateway at: nntp://news.public-inbox.org/inbox.comp.mail.public-inbox.meta --- Documentation/txt2pre | 4 +++- README | 8 ++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Documentation/txt2pre b/Documentation/txt2pre index acc6ca9..ef6a4f3 100755 --- a/Documentation/txt2pre +++ b/Documentation/txt2pre @@ -17,7 +17,9 @@ my ($title) = ($str =~ /\A([^\n]+)/); # 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((ftp|https?)://[\w+\+\&\?\.\%\;/#-]+)!$1!g; +$str =~ s!\b((nntp|ftp|https?)://[\w+\+\&\?\.\%\;/#-]+)!$1!g; + $str =~ s!\e!>!g; # swap escapes back to > print '', diff --git a/README b/README index 89e8521..965556f 100644 --- a/README +++ b/README @@ -4,7 +4,8 @@ public-inbox implements the sharing of an email inbox via git to complement or replace traditional mailing lists. Readers may subscribe to a mailing list using ssoma[1] (a git-wrapper) to import email from a git repository into an IMAP folder, Maildir, -or mbox. Readers may also read via Atom feeds and HTML archives. +or mbox. Readers may also read via NNTP, Atom feeds and HTML +archives. public-inbox spawned around three main ideas: @@ -39,7 +40,8 @@ addresses without losing/splitting archives. Dedicated readers only need to install ssoma, a command-line tool[1] currently implemented in Perl. -Casual readers may also follow the list via Atom feed or web archives. +Casual readers may also follow the list via NNTP, Atom feed or +HTML archives. _Anybody_ may also setup a delivery-only mailing list server to replay a public-inbox git archive to subscribers via SMTP. @@ -117,6 +119,8 @@ You may subscribe via ssoma(1), LISTNAME is a name of your choosing: ssoma sync --cron HTML inbox archives are available: http://public-inbox.org/meta/ +The archives are also readable via NNTP: + nntp://news.public-inbox.org/inbox.comp.mail.public-inbox.meta Anti-Spam --------- -- EW