From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1C825A00C2; Tue, 29 Nov 2022 22:33:08 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 01B9A40A79; Tue, 29 Nov 2022 22:33:08 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 071C340693; Tue, 29 Nov 2022 22:33:07 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 248AA20B717A; Tue, 29 Nov 2022 13:33:06 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 248AA20B717A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1669757586; bh=Ss6ru29YdMDUGUcZ0c0G0fskIo3vLeaX4luzUEw3G84=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=VUZLtpPU76z+ASfPjEFgtZ8ICkCK/qPtNgDxrXBBBnFj9D03hTma9fkv+uP1pMDs2 5mvMWjzpOZzIX7jEBadPYIp6svxgPMyq+M5olB7m0nx4zuIbhIhlKv1+XNAbkTfSeB 4NS5URLWHnlLZABqoNR2N35VAvte19BVY40bm8FY= Date: Tue, 29 Nov 2022 13:33:06 -0800 From: Tyler Retzlaff To: David Marchand Cc: dev@dpdk.org, stable@dpdk.org, Thomas Monjalon , Bruce Richardson Subject: Re: [PATCH] devtools: fix name check with mbox files Message-ID: <20221129213306.GA31725@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20221129135900.35770-1-david.marchand@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221129135900.35770-1-david.marchand@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Tue, Nov 29, 2022 at 02:59:00PM +0100, David Marchand wrote: > When passing a patch downloaded as mbox, the mail headers were being > scanned which resulted in mailing list and other unrelated mail > addresses being checked against the contributors list. > > Filter them by focusing on the mail body (separated from the headers > with the first empty line). > > Fixes: e83d41f0694d ("mailmap: add list of contributors") > Cc: stable@dpdk.org > > Signed-off-by: David Marchand > --- Acked-by: Tyler Retzlaff