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 A40D9D806D5 for ; Tue, 13 Feb 2024 19:18:00 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=cFa7+eUddQSNssbtnlghgZ5oEri0+IFRQKEm/rY858A=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id: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=1707851879; v=1; b=CEIgJFfvIj3dZGHu+slMuSmd2DLA7lR4hBDraP4OqX/rKTYfZpNfRxozamKuTwseuxLIHJwM +xzlaUiUQbGgFF8e+C/ko0Qyj4i7FF3F57Glt60kk5fkUVhFJxmAyksStriIAEoDcYPIgRAg6Zf lnwZe+PgdnH7S1bDvK3H6YbE= X-Received: by 127.0.0.2 with SMTP id hYyJYY7687511xerfISYDG61; Tue, 13 Feb 2024 11:17:59 -0800 X-Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.9]) by mx.groups.io with SMTP id smtpd.web11.22427.1707851878343357418 for ; Tue, 13 Feb 2024 11:17:58 -0800 X-IronPort-AV: E=McAfee;i="6600,9927,10982"; a="24349133" X-IronPort-AV: E=Sophos;i="6.06,158,1705392000"; d="scan'208";a="24349133" X-Received: from orviesa010.jf.intel.com ([10.64.159.150]) by orvoesa101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Feb 2024 11:17:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.06,158,1705392000"; d="scan'208";a="3015944" X-Received: from mdkinney-mobl.amr.corp.intel.com ([10.209.108.163]) by orviesa010-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Feb 2024 11:17:57 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Rebecca Cran , Liming Gao , Bob Feng , Yuwei Chen Subject: [edk2-devel] [Patch 1/1] BaseTools/Scripts: Update PatchCheck.py Author checks Date: Tue, 13 Feb 2024 11:17:53 -0800 Message-Id: <20240213191753.1470-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: zEOP1sFDZs5yHVtBrP7Uib4px7686176AA= 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=CEIgJFfv; 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 [bcran] Cc: Liming Gao [lgao4] Cc: Bob Feng [BobCF] Cc: Yuwei Chen [YuweiChen1110] Signed-off-by: Michael D Kinney --- 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 (#115404): https://edk2.groups.io/g/devel/message/115404 Mute This Topic: https://groups.io/mt/104339266/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-