From cfebaf09e38e6c91f34875f7d27016e0ed2e1464 Mon Sep 17 00:00:00 2001 From: "Felipe M. (aider)" Date: Mon, 2 Dec 2024 16:29:03 +0100 Subject: [PATCH] feat: Add catch-all recipient configuration to Config struct --- config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config.go b/config.go index 9a64e9f..f1711ca 100644 --- a/config.go +++ b/config.go @@ -10,6 +10,7 @@ type Config struct { Username string Password string Recipients []ConfigRecipient + CatchAll *ConfigRecipient } func (c *Config) SetDefaults() {