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: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 3242D20469; Sat, 9 Apr 2016 01:23:31 +0000 (UTC) Date: Sat, 9 Apr 2016 01:23:31 +0000 From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] filter: remove out dated comments Message-ID: <20160409012331.GA25484@dcvr.yhbt.net> References: <20160409011555.6732-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160409011555.6732-1-e@80x24.org> List-Id: Followup-to commit 5a590bcb6813 ("filter: preserve Mail-Followup-To and Mail-Reply-To") --- lib/PublicInbox/Filter.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/PublicInbox/Filter.pm b/lib/PublicInbox/Filter.pm index 4fdbe87..10173ad 100644 --- a/lib/PublicInbox/Filter.pm +++ b/lib/PublicInbox/Filter.pm @@ -31,8 +31,6 @@ sub run { # kill potentially bad/confusing headers # Note: ssoma already does this, but since we mangle the message, # we should do this before it gets to ssoma. - # We also kill Mail-{Followup,Reply}-To headers due to - # the nature of public-inbox having no real subscribers. foreach my $d (qw(status lines content-length)) { $mime->header_set($d); } -- EW