Merge branch 'mlimonci/fix-email' into 'main'

Fix the robot email script

See merge request kernel-firmware/linux-firmware!36
This commit is contained in:
Josh Boyer 2023-10-19 17:20:27 +00:00
commit d983107a2d
1 changed files with 5 additions and 4 deletions

View File

@ -79,11 +79,12 @@ def reply_email(content, branch):
reply = email.message.EmailMessage()
orig = email.message_from_string(content)
targets = email.utils.getaddresses(
orig.get_all("to", []) + orig.get_all("cc", []) + orig.get_all("from", [])
reply["To"] = ", ".join(
email.utils.formataddr(t)
for t in email.utils.getaddresses(
orig.get_all("from", []) + orig.get_all("to", []) + orig.get_all("cc", [])
)
)
for target in targets:
reply["To"] += email.utils.formataddr(target)
reply["From"] = "linux-firmware@kernel.org"
reply["Subject"] = "Re: {}".format(orig["Subject"])