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: AS47066 71.19.144.0/20 X-Spam-Status: No, score=-1.9 required=3.0 tests=AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: raindrops-public@bogomips.org Received: from zedshaw2.xen.prgmr.com (zedshaw2.xen.prgmr.com [71.19.156.177]) by dcvr.yhbt.net (Postfix) with ESMTP id 825AF1F4E1 for ; Tue, 13 Jan 2015 20:36:58 +0000 (UTC) Received: from zedshaw2.xen.prgmr.com (unknown [IPv6:::1]) by zedshaw2.xen.prgmr.com (Postfix) with ESMTP id 69A3874BA7 for ; Tue, 13 Jan 2015 20:38:48 +0000 (UTC) MIME-Version: 1.0 Date: Tue, 13 Jan 2015 20:36:38 +0000 From: Eric Wong List-Archive: List-Help: List-Id: List-Post: List-Subscribe: List-Unsubscribe: Message-Id: <1421181398-27931-3-git-send-email-normalperson@yhbt.net> Precedence: list References: <1421181398-27931-1-git-send-email-normalperson@yhbt.net> Sender: raindrops@librelist.org Subject: [raindrops] [PATCH 3/3] move mailing list to raindrops-public@bogomips.org To: raindrops@librelist.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Existing subscribers on librelist will need to resubscribe since there's no published subscriber lists anywhere. The public-inbox + mlmmj setup on bogomips.org allows posting without subscription and offers downloadable archives via git. The lack of rsyncable archives on librelist nowadays and subscription-required nature of librelist are points against it. Repliers should Cc: all recipients (using the reply-all function of their mail client) since many readers are not subscribed. This project has never accepted or encouraged HTML email, but librelist accepted it. The bogomips.org mail server is configured to treat HTML mail as spam, so do not send HTML mail if you expect a response. Users who wish to subscribe may send a message to: raindrops-public+subscribe@bogomips.org Similarly, they may unsubscribe via: raindrops-public+unsubscribe@bogomips.org HTTP archives are available via: http://bogomips.org/raindrops-public/ ssoma users may also use: git://bogomips.org/raindrops-public (see README change) Old messages to the librelist addresses will continue to get routed to the new mailing list. ref: http://public-inbox.org/ --- .olddoc.yml | 3 ++- README | 15 +++++---------- ext/raindrops/linux_inet_diag.c | 2 +- lib/raindrops.rb | 2 +- raindrops.gemspec | 2 +- 5 files changed, 10 insertions(+), 14 deletions(-) diff --git a/.olddoc.yml b/.olddoc.yml index f31fa66..567cef1 100644 --- a/.olddoc.yml +++ b/.olddoc.yml @@ -2,5 +2,6 @@ cgit_url: http://bogomips.org/raindrops.git git_url: git://bogomips.org/raindrops.git rdoc_url: http://raindrops.bogomips.org/ -public_email: raindrops@librelist.org +public_email: raindrops-public@bogomips.org private_email: raindrops@bogomips.org +ml_url: http://bogomips.org/raindrops-public/ diff --git a/README b/README index e157aa8..905c44c 100644 --- a/README +++ b/README @@ -61,8 +61,8 @@ Unpack it, and run "ruby setup.rb" See Raindrops::Middleware and Raindrops::LastDataRecv documentation for use Rack servers. The entire library is fully-documented and we are -responsive on the mailing list (mailto:raindrops@librelist.org) if you -have any questions or comments. +responsive on the mailing list (mailto:raindrops-public@bogomips.org) if +you have any questions or comments. == Development @@ -91,13 +91,8 @@ raindrops is licensed under the LGPL+2.1 or later: == Contact All feedback (bug reports, user/development discussion, patches, pull -requests) go to the mailing list: mailto:raindrops@librelist.org +requests) go to the mailing list: mailto:raindrops-public@bogomips.org -The mailing list is mirrored to Gmane, all information about the -group is here: +Mailing list archives are available here: -http://gmane.org/info.php?group=gmane.comp.lang.ruby.raindrops.general - -Mailing list archives in mbox format may be downloaded here: - -http://raindrops.bogomips.org/archives/ +http://bogomips.org/raindrops-public/ diff --git a/ext/raindrops/linux_inet_diag.c b/ext/raindrops/linux_inet_diag.c index 773e094..fa8de03 100644 --- a/ext/raindrops/linux_inet_diag.c +++ b/ext/raindrops/linux_inet_diag.c @@ -216,7 +216,7 @@ static const char *addr_any(sa_family_t family) static void bug_warn(void) { fprintf(stderr, "Please report how you produced this at "\ - "raindrops@librelist.org\n"); + "raindrops-public@bogomips.org\n"); fflush(stderr); } diff --git a/lib/raindrops.rb b/lib/raindrops.rb index 7acde22..d3913a8 100644 --- a/lib/raindrops.rb +++ b/lib/raindrops.rb @@ -12,7 +12,7 @@ # Unlike many classes in this package, the core Raindrops class is # intended to be portable to all reasonably modern *nix systems # supporting mmap(). Please let us know if you have portability -# issues, patches or pull requests at mailto:raindrops@librelist.org +# issues, patches or pull requests at mailto:raindrops-public@bogomips.org class Raindrops # Used to represent the number of +active+ and +queued+ sockets for diff --git a/raindrops.gemspec b/raindrops.gemspec index f338448..7864ac3 100644 --- a/raindrops.gemspec +++ b/raindrops.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |s| s.authors = ["raindrops hackers"] s.description = readme_description - s.email = %q{raindrops@librelist.org} + s.email = %q{raindrops@bogomips.org} s.extensions = %w(ext/raindrops/extconf.rb) s.extra_rdoc_files = extra_rdoc_files(manifest) s.files = manifest -- EW