diff --git a/email_handler.py b/email_handler.py index f24fb1e9..006c7ff8 100644 --- a/email_handler.py +++ b/email_handler.py @@ -426,7 +426,7 @@ async def handle_forward( is_success indicates whether an email has been delivered and smtp_status is the SMTP Status ("250 Message accepted", "550 Non-existent email address", etc) """ - address = rcpt_to.lower().strip() # alias@SL + address = rcpt_to.lower().strip().replace(" ", "") # alias@SL alias = Alias.get_by(email=address) if not alias: