remove email subject logging

This commit is contained in:
Son NK 2019-12-18 18:07:20 +02:00
parent 1f9d6c0e98
commit 2daeb9501d
1 changed files with 3 additions and 13 deletions

View File

@ -169,18 +169,16 @@ class MailHandler:
msg, "List-Unsubscribe-Post", "List-Unsubscribe=One-Click"
)
original_subject = msg["Subject"]
add_dkim_signature(msg, EMAIL_DOMAIN)
LOG.d(
"Forward mail from %s to %s, subject %s, mail_options %s, rcpt_options %s ",
"Forward mail from %s to %s, mail_options %s, rcpt_options %s ",
website_email,
user_email,
original_subject,
envelope.mail_options,
envelope.rcpt_options,
)
add_dkim_signature(msg, EMAIL_DOMAIN)
# smtp.send_message has UnicodeEncodeErroremail issue
# encode message raw directly instead
msg_raw = msg.as_string().encode()
@ -191,14 +189,6 @@ class MailHandler:
envelope.mail_options,
envelope.rcpt_options,
)
# smtp.send_message(
# msg,
# from_addr=forward_email.reply_email,
# to_addrs=[user_email], # user personal email
# mail_options=envelope.mail_options,
# rcpt_options=envelope.rcpt_options,
# )
else:
LOG.d("%s is disabled, do not forward", gen_email)
forward_log.blocked = True