# HG changeset patch # User Mads Kiilerich # Date 2020-11-04 00:35:21 # Node ID ad239692ea9570bdb125dc252990d989ff9157ed # Parent d913d84d5253b52de2efb1f3752232c3c1126dbf mail: fix duplicate "From" headers Problem introduced in 9a0c41175e66: When iterating the headers dict and setting "msg[key] = value", it wasn't replacing the header but performing add_header so we sometimes ended up with two From headers. It is also a general problem that while the headers dict only can contain each key once, it can contain entries that only differ in casing and thus will fold to the same message header, making it possible to end up adding duplicate headers. "msg.replace_header(key, value)" is not a simple solution to the problem: it will raise KeyError if no such previous key exists. Now, make the problem more clear by explicitly using add_header. Avoid the duplication problem by deleting the key (no matter which casing) before invoking add_header. Delete promises that "No exception is raised if the named field isn’t present in the headers". diff --git a/kallithea/lib/celerylib/tasks.py b/kallithea/lib/celerylib/tasks.py --- a/kallithea/lib/celerylib/tasks.py +++ b/kallithea/lib/celerylib/tasks.py @@ -317,7 +317,8 @@ def send_email(recipients, subject, body msg['Date'] = email.utils.formatdate(time.time()) for key, value in headers.items(): - msg[key] = value + del msg[key] # Delete key first to make sure add_header will replace header (if any), no matter the casing + msg.add_header(key, value) msg.attach(email.mime.text.MIMEText(body, 'plain')) msg.attach(email.mime.text.MIMEText(html_body, 'html'))