From b8f66a8e8b16cb53c46c32c1dbe7c3fc6390dc6f Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Sat, 20 Dec 2025 15:56:17 -0600 Subject: [PATCH] fix --- worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.py b/worker.py index f0e4995..570cf41 100755 --- a/worker.py +++ b/worker.py @@ -624,7 +624,7 @@ def process_message(message_body: dict, receive_count: int) -> bool: from_addr_final = from_addr # 5. OOO & FORWARD LOGIC (neu, vor SMTP-Versand) - if rules_table and not is_ses_bounce_or_autoreply(parsed): + if rules_table and not is_ses_bounce_notification(parsed): for recipient in recipients: try: rule = rules_table.get_item(Key={'email_address': recipient}).get('Item', {})