diff --git a/src/main/java/org/eclipsefoundation/git/eca/service/impl/DefaultMailerService.java b/src/main/java/org/eclipsefoundation/git/eca/service/impl/DefaultMailerService.java
index 5e3782859fa79244bd02a2bbfe78237e0e69772d..6c2a10d5915666e176fa9dce44e67c60bbd27a8d 100644
--- a/src/main/java/org/eclipsefoundation/git/eca/service/impl/DefaultMailerService.java
+++ b/src/main/java/org/eclipsefoundation/git/eca/service/impl/DefaultMailerService.java
@@ -10,6 +10,7 @@
  */
 package org.eclipsefoundation.git.eca.service.impl;
 
+import org.eclipsefoundation.git.eca.config.MailerConfig;
 import org.eclipsefoundation.git.eca.dto.GithubWebhookTracking;
 import org.eclipsefoundation.git.eca.service.MailerService;
 import org.slf4j.Logger;
@@ -24,13 +25,13 @@ import jakarta.enterprise.context.ApplicationScoped;
 @ApplicationScoped
 public class DefaultMailerService implements MailerService {
   public static final Logger LOGGER = LoggerFactory.getLogger(DefaultMailerService.class);
-  private final EclipseMailerConfig config;
+  private final MailerConfig config;
   private final Mailer mailer;
 
   @Location("emails/revalidation_alert")
   Template revalidationAlertTemplate;
 
-  public DefaultMailerService(EclipseMailerConfig config, Mailer mailer) {
+  public DefaultMailerService(MailerConfig config, Mailer mailer) {
     this.config = config;
     this.mailer = mailer;
   }
diff --git a/src/main/java/org/eclipsefoundation/git/eca/service/impl/EclipseMailerConfig.java b/src/main/java/org/eclipsefoundation/git/eca/service/impl/EclipseMailerConfig.java
deleted file mode 100644
index 2a200effbdbbc13de384e2623641b871505023cd..0000000000000000000000000000000000000000
--- a/src/main/java/org/eclipsefoundation/git/eca/service/impl/EclipseMailerConfig.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.eclipsefoundation.git.eca.service.impl;
-
-import java.util.List;
-import java.util.Optional;
-
-import io.smallrye.config.ConfigMapping;
-
-/**
- * Represents configuration for the default mailer service.
- * 
- * @author Martin Lowe
- *
- */
-@ConfigMapping(prefix = "eclipse.mailer")
-public interface EclipseMailerConfig {
-
-  public RevalidationAlert revalidationAlert();
-
-  /**
-   * This interface defines the contract for specifying recipients and message configuration when
-   * sending revalidation alerts within the ECA validation process.
-   */
-  public interface RevalidationAlert {
-    public List<String> to();
-
-    public MessageConfiguration authorMessage();
-  }
-
-  public interface MessageConfiguration {
-    public Optional<String> replyTo();
-
-    public Optional<List<String>> bcc();
-  }
-}