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: AS49981 217.23.0.0/20 X-Spam-Status: No, score=-2.6 required=3.0 tests=AWL,BAYES_00,RCVD_IN_XBL, RDNS_NONE,SPF_FAIL,SPF_HELO_FAIL shortcircuit=no autolearn=no autolearn_force=no version=3.4.0 Received: from 80x24.org (unknown [217.23.13.129]) by dcvr.yhbt.net (Postfix) with ESMTP id B6D7720D12 for ; Wed, 14 Jun 2017 00:11:03 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/3] reply: support Reply-To Date: Wed, 14 Jun 2017 00:10:53 +0000 Message-Id: <20170614001053.12823-4-e@80x24.org> In-Reply-To: <20170614001053.12823-1-e@80x24.org> References: <20170614001053.12823-1-e@80x24.org> List-Id: Reply-To is common and probably should've been supported, since day one, but we won't omit other addresses, either. --- lib/PublicInbox/Reply.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/Reply.pm b/lib/PublicInbox/Reply.pm index 5bbe8f4..13ae052 100644 --- a/lib/PublicInbox/Reply.pm +++ b/lib/PublicInbox/Reply.pm @@ -26,7 +26,7 @@ sub add_addrs { } } -my @reply_headers = qw(From To Cc); +my @reply_headers = qw(From To Cc Reply-To); my $reply_headers = join('|', @reply_headers); sub mailto_arg_link { -- EW