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 7BABE1F404 for ; Tue, 30 Jan 2018 18:20:22 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] view: close
 in reply instructions
Date: Tue, 30 Jan 2018 18:20:22 +0000
Message-Id: <20180130182022.22277-1-e@80x24.org>
List-Id: 

We leave the mailto: link out when obfuscating address, so
do not stuff the "
" closing tag into it. Instead, keep the closing tag in the same context as the opening one, making it easier to keep track of. --- lib/PublicInbox/View.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index 70e38a6..0de53cb 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -70,9 +70,10 @@ sub msg_reply { * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link +href="$link">mailto: link EOF } + push @$arg, '/path/to/YOUR_REPLY'; $arg = ascii_html(join(" \\\n ", '', @$arg)); <$se_url -$link +$link EOF } -- EW