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 05DBA20FD0 for ; Thu, 30 Jun 2016 09:58:37 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/2] view: reference posting style article on Wikipedia Date: Thu, 30 Jun 2016 09:58:34 +0000 Message-Id: <20160630095834.2723-3-e@80x24.org> In-Reply-To: <20160630095834.2723-1-e@80x24.org> References: <20160630095834.2723-1-e@80x24.org> List-Id: Storage is precious when it is forever and distributed. And public-inbox aims to not only end Eternal September(*), but to build a world less-centralized than Usenet ever was: forkable discussion groups (*) https://en.wikipedia.org/wiki/Eternal_September --- lib/PublicInbox/View.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index 9d48dfc..8487c2a 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -51,6 +51,8 @@ sub msg_reply { my ($ctx, $hdr) = @_; my $se_url = 'https://kernel.org/pub/software/scm/git/docs/git-send-email.html'; + my $p_url = + 'https://en.wikipedia.org/wiki/Posting_style#Interleaved_style'; my ($arg, $link) = mailto_arg_link($hdr); push @$arg, '/path/to/YOUR_REPLY'; @@ -65,6 +67,10 @@ plain-text email using any one of the following methods: and reply-to-all from there: mbox + Avoid top-posting and favor interleaved quoting: + $p_url + * Reply to all the recipients using the --to, --cc, and --in-reply-to switches of git-send-email(1): -- EW