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 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: clogger-public@bogomips.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 31C1563381B for ; Tue, 13 Jan 2015 02:16:40 +0000 (UTC) From: Eric Wong To: clogger-public@bogomips.org Subject: [PATCH] new mailing list at clogger-public@bogomips.org Date: Tue, 13 Jan 2015 02:16:39 +0000 Message-Id: <1421115399-9327-3-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.2.1.203.g624e5c2 List-Id: You may (optionally) subscribe to the new mailing list at: clogger-public+subscribe@bogomips.org You'll need to subscribe manually since librelist subscribers cannot be imported. Of course, you do not have to be subscribed to post, either (please Cc: everyone as folks may not be subscribed). If your ISP prevents you from using port 25, port 587 (submission) is open on bogomips.org. You may use Tor if you do not wish to expose your IP when using port 587. Any HTML mail will be flagged as spam, so please do not send it and waste storage and bandwidth on it. Basic, old-fashioned mailing list conventions apply: no top-posting, trim replies, attribute your quotes, short signatures, etc. This existing list will operate in public-inbox "hijack mode": the new address is subscribed to the old librelist, so any messages sent to the librelist are automatically archived to the new public-inbox. Of course, not much happens here, anyways, so nobody notices :) Background: Over the years, I've come to disagree with the subscription-required posting policy of librelist. Combined with disabling of rsync archives, one of my main reasons for choosing librelist back in the day are gone. Lately, I've also been working on public-inbox, http://public-inbox.org/ an "archives-first" approach to mailing lists using git. ssoma (git) archives are available at: git://bogomips.org/clogger-public/ The ssoma format is described at http://ssoma.public-inbox.org/ HTML archives are going to http://bogomips.org/clogger-public/ All archives imported from gmane, and posts to this librelist also go there. --- .olddoc.yml | 3 ++- README | 4 ++-- archive/.gitignore | 3 +++ archive/slrnpull.conf | 4 ++++ clogger.gemspec | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 archive/.gitignore create mode 100644 archive/slrnpull.conf diff --git a/.olddoc.yml b/.olddoc.yml index cf72cc6..b38126f 100644 --- a/.olddoc.yml +++ b/.olddoc.yml @@ -2,5 +2,6 @@ rdoc_url: http://clogger.bogomips.org/ cgit_url: http://bogomips.org/clogger.git git_url: git://bogomips.org/clogger.git -public_email: clogger@librelist.org +public_email: clogger-public@bogomips.org private_email: clogger@bogomips.org +ml_url: http://bogomips.org/clogger-public/ diff --git a/README b/README index 74c8185..a938510 100644 --- a/README +++ b/README @@ -113,9 +113,9 @@ development. Patches should always be sent inline == CONTACT All feedback (bug reports, user/development discussion, patches, pull -requests) go to the mailing list. +requests) go to the public mailing list. -* mailto:clogger@librelist.org +* mailto:clogger-public@bogomips.org Do not send HTML mail or attachments. Do not top post. diff --git a/archive/.gitignore b/archive/.gitignore new file mode 100644 index 0000000..bd7ad57 --- /dev/null +++ b/archive/.gitignore @@ -0,0 +1,3 @@ +/data +/news +/requests diff --git a/archive/slrnpull.conf b/archive/slrnpull.conf new file mode 100644 index 0000000..6f69163 --- /dev/null +++ b/archive/slrnpull.conf @@ -0,0 +1,4 @@ +# group_name max expire headers_only +gmane.comp.lang.ruby.clogger.general 1000000000 1000000000 0 + +# usage: slrnpull -d $PWD -h news.gmane.org --no-post diff --git a/clogger.gemspec b/clogger.gemspec index ebbf2ec..e2d5f7b 100644 --- a/clogger.gemspec +++ b/clogger.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |s| s.homepage = Olddoc.config['rdoc_url'] s.authors = ["cloggers"] s.description = readme_description - s.email = %q{clogger@librelist.org} + s.email = %q{clogger@bogomips.org} s.extra_rdoc_files = extra_rdoc_files(manifest) s.files = manifest s.summary = summary -- 2.2.1.203.g624e5c2