Ver Fonte

Remove the X-Sender during the reply phase

Son NK há 5 anos atrás
pai
commit
0517fcfd48
1 ficheiros alterados com 1 adições e 0 exclusões
  1. 1 0
      email_handler.py

+ 1 - 0
email_handler.py

@@ -621,6 +621,7 @@ def handle_reply(envelope, smtp: SMTP, msg: Message, rcpt_to: str) -> (bool, str
 
     # remove sender header if present as this could reveal user real email
     delete_header(msg, "Sender")
+    delete_header(msg, "X-Sender")
 
     replace_header_when_reply(msg, alias, "To")
     replace_header_when_reply(msg, alias, "Cc")