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 B32442090A for ; Mon, 20 Mar 2017 20:47:33 +0000 (UTC) From: Eric Wong To: raindrops-public@bogomips.org Subject: [PATCH] doc: remove private email support address Date: Mon, 20 Mar 2017 20:47:33 +0000 Message-Id: <20170320204733.23430-1-e@80x24.org> List-Id: Email was never private, and won't further burden myself or any future maintainers with trying to maintain someone elses' privacy. Offering private support is also unfair to readers on public lists who may get a watered down or improperly translated summary (if at all). Instead, encourage the use of anonymity tools and scrubbing of sensitive information when the sender deems necessary. --- .olddoc.yml | 1 - README | 9 +++++++-- raindrops.gemspec | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.olddoc.yml b/.olddoc.yml index 319d30b..9792974 100644 --- a/.olddoc.yml +++ b/.olddoc.yml @@ -3,7 +3,6 @@ cgit_url: https://bogomips.org/raindrops.git git_url: git://bogomips.org/raindrops.git rdoc_url: https://bogomips.org/raindrops/ public_email: raindrops-public@bogomips.org -private_email: raindrops@bogomips.org ml_url: - https://bogomips.org/raindrops-public/ - http://ou63pmih66umazou.onion/raindrops-public diff --git a/README b/README index 3379870..723d125 100644 --- a/README +++ b/README @@ -58,7 +58,8 @@ If you use RubyGems: 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-public@bogomips.org) if +responsive on the publically archived mailing list +(mailto:raindrops-public@bogomips.org) if you have any questions or comments. == Development @@ -88,9 +89,13 @@ raindrops is licensed under the LGPL-2.1+ == Contact All feedback (bug reports, user/development discussion, patches, pull -requests) go to the mailing list: mailto:raindrops-public@bogomips.org +requests) go to the publically archived mailing list: +mailto:raindrops-public@bogomips.org Mailing list archives are available over HTTPS and NNTP: * https://bogomips.org/raindrops-public/ * nntp://news.public-inbox.org/inbox.comp.lang.ruby.raindrops + +Since archives are public, scrub sensitive information and +use anonymity tools such as Tor or Mixmaster if you deem necessary. diff --git a/raindrops.gemspec b/raindrops.gemspec index 4651fa9..7be8050 100644 --- a/raindrops.gemspec +++ b/raindrops.gemspec @@ -12,7 +12,7 @@ s.authors = ["raindrops hackers"] s.description = readme_description - s.email = %q{raindrops@bogomips.org} + s.email = %q{raindrops-public@bogomips.org} s.extensions = %w(ext/raindrops/extconf.rb) s.extra_rdoc_files = extra_rdoc_files(manifest) s.files = manifest -- EW