From 3f9ae87258a406971556ce70cabad45f3f4a3876 Mon Sep 17 00:00:00 2001 From: Mats Rynge Date: Tue, 7 Jul 2026 09:12:25 -0700 Subject: [PATCH] ACCESS: do not send emails to PEARC'26 users --- opensciencegrid/access-amie/lib/Main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/opensciencegrid/access-amie/lib/Main.py b/opensciencegrid/access-amie/lib/Main.py index 7317c861..f7dfc5d0 100644 --- a/opensciencegrid/access-amie/lib/Main.py +++ b/opensciencegrid/access-amie/lib/Main.py @@ -240,7 +240,9 @@ def request_account_create(self, packet): OSG User Facilitation

''' - self.freshdesk.send_email(user_email, subject, body, tags=["access_account"]) + # do not send emails to pearc'26 users + if project_id != "TG-CIS260991": + self.freshdesk.send_email(user_email, subject, body, tags=["access_account"]) self.amie.save_packet(packet, 'incoming', 'parked') def data_account_create(self, packet):