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,AWL,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 B3D1B200EA; Thu, 1 Oct 2015 22:22:53 +0000 (UTC) Date: Thu, 1 Oct 2015 22:22:53 +0000 From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/3] filter: do not strip Reply-To Message-ID: <20151001222253.GC23598@dcvr.yhbt.net> References: <20151001222143.GA23598@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151001222143.GA23598@dcvr.yhbt.net> List-Id: It's often part of idiotic policies to prevent mailing lists from working at all. --- lib/PublicInbox/Filter.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/PublicInbox/Filter.pm b/lib/PublicInbox/Filter.pm index cab6aad..6f28e01 100644 --- a/lib/PublicInbox/Filter.pm +++ b/lib/PublicInbox/Filter.pm @@ -29,10 +29,10 @@ 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 and Reply-To headers due to + # 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 - mail-followup-to mail-reply-to reply-to)) { + mail-followup-to mail-reply-to)) { $mime->header_set($d); } -- EW