From c6f62dcffd3319e2d4d5fc466496a97ecace5d44 Mon Sep 17 00:00:00 2001 From: Weimin Yu Date: Thu, 10 Aug 2023 15:38:13 -0400 Subject: [PATCH] Fix the alert recipient address for Spec11 (#2103) During email migration, alerts should be sent to the address annotated with `newAlertRecipientEmailAddress`. --- .../java/google/registry/reporting/spec11/Spec11EmailUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/google/registry/reporting/spec11/Spec11EmailUtils.java b/core/src/main/java/google/registry/reporting/spec11/Spec11EmailUtils.java index 19b1ec59d..9d65a2ff2 100644 --- a/core/src/main/java/google/registry/reporting/spec11/Spec11EmailUtils.java +++ b/core/src/main/java/google/registry/reporting/spec11/Spec11EmailUtils.java @@ -66,7 +66,7 @@ public class Spec11EmailUtils { @Inject Spec11EmailUtils( GmailClient gmailClient, - @Config("alertRecipientEmailAddress") InternetAddress alertRecipientAddress, + @Config("newAlertRecipientEmailAddress") InternetAddress alertRecipientAddress, @Config("spec11OutgoingEmailAddress") InternetAddress spec11OutgoingEmailAddress, @Config("spec11BccEmailAddresses") ImmutableList spec11BccEmailAddresses, @Config("spec11WebResources") ImmutableList spec11WebResources,