From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id B5408D8003E for ; Sun, 18 Feb 2024 20:59:59 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=eCSGoBsFBWKogA95WSe/6J8fG17l41pkjlcXaZkQq2s=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1708289998; v=1; b=JAWQn5RnXTFjWlWDXc80N+Y3axk9U3IOxnwF6hZbmCrCf7GTey+rczvJy33qmj9ifamq6o6G Tw+17d02xY+kD9MdazMGx2wNtwm4a25sj8Yr7HZ1mFMz8FKGLLgVlfCa6QqRE4F3Q7p42IXcZFB TGIK/3zifzTOC0YlJZG8WfQY= X-Received: by 127.0.0.2 with SMTP id 1doFYY7687511xe9wSz6WA2Z; Sun, 18 Feb 2024 12:59:58 -0800 X-Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.18]) by mx.groups.io with SMTP id smtpd.web11.26742.1708289997485769267 for ; Sun, 18 Feb 2024 12:59:57 -0800 X-IronPort-AV: E=McAfee;i="6600,9927,10988"; a="2235012" X-IronPort-AV: E=Sophos;i="6.06,169,1705392000"; d="scan'208";a="2235012" X-Received: from orviesa009.jf.intel.com ([10.64.159.149]) by fmvoesa112.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Feb 2024 12:59:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.06,169,1705392000"; d="scan'208";a="4351423" X-Received: from mdkinney-mobl.amr.corp.intel.com ([10.209.68.113]) by orviesa009-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Feb 2024 12:59:58 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Rebecca Cran , Liming Gao , Bob Feng , Yuwei Chen , Ard Biesheuvel Subject: [edk2-devel] [Patch 1/4] BaseTools/Scripts/PatchCheck: Update Author checks Date: Sun, 18 Feb 2024 12:59:48 -0800 Message-Id: <20240218205951.497-2-michael.d.kinney@intel.com> In-Reply-To: <20240218205951.497-1-michael.d.kinney@intel.com> References: <20240218205951.497-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,michael.d.kinney@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: xSoAv59KuAN0T8GMMVK69miVx7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=JAWQn5Rn; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none) REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4680 * Reject patches that match Author email "devel@edk2.groups.io" * Update the current check for " via Groups.Io" to perform a case insensitive match. It appears that groups.io has changed the format of this string to use all lower case. Cc: Rebecca Cran Cc: Liming Gao Cc: Bob Feng Cc: Yuwei Chen Signed-off-by: Michael D Kinney Reviewed-by: Rebecca Cran Reviewed-by: Ard Biesheuvel --- BaseTools/Scripts/PatchCheck.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/BaseTools/Scripts/PatchCheck.py b/BaseTools/Scripts/PatchCheck.py index 1675dcbd7321..e600e0be440f 100755 --- a/BaseTools/Scripts/PatchCheck.py +++ b/BaseTools/Scripts/PatchCheck.py @@ -85,7 +85,11 @@ class EmailAddressCheck: self.error("The email address cannot contain a space: " + mo.group(3)) - if ' via Groups.Io' in name and mo.group(3).endswith('@groups.io'): + if mo.group(3) == 'devel@edk2.groups.io': + self.error("Email rewritten by lists DMARC / DKIM / SPF: " + + email) + + if ' via groups.io' in name.lower() and mo.group(3).endswith('@groups.io'): self.error("Email rewritten by lists DMARC / DKIM / SPF: " + email) -- 2.40.1.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#115569): https://edk2.groups.io/g/devel/message/115569 Mute This Topic: https://groups.io/mt/104434582/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-