From 6dd7a023f30a3613eb9b209d1c3eaf82f36ff304 Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Sun, 23 Mar 2025 13:55:47 +0100 Subject: [PATCH] Improved error handling for invalid recipient address --- cps/tasks/mail.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cps/tasks/mail.py b/cps/tasks/mail.py index 49cd913f..1fbcd9d2 100644 --- a/cps/tasks/mail.py +++ b/cps/tasks/mail.py @@ -171,6 +171,10 @@ class TaskEmail(CalibreTask): except MemoryError as e: log.error_or_exception(e, stacklevel=3) self._handleError('MemoryError sending e-mail: {}'.format(str(e))) + except (smtplib.SMTPRecipientsRefused) as e: + log.error_or_exception(e, stacklevel=3) + self._handleError('Smtplib Error sending e-mail: {}'.format( + (list(e.args[0].values())[0][1]).decode('utf-8)').replace("\n", '. '))) except (smtplib.SMTPException, smtplib.SMTPAuthenticationError) as e: log.error_or_exception(e, stacklevel=3) if hasattr(e, "smtp_error"):