浏览代码

Remove the X-Sender during the reply phase

Son NK 5 年之前
父节点
当前提交
0517fcfd48
共有 1 个文件被更改,包括 1 次插入0 次删除
  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")