Skip to content

Commit

Permalink
Merge pull request #119 from modoboa/fix/reply_to_format
Browse files Browse the repository at this point in the history
Parse Reply-To header if present.
  • Loading branch information
tonioo committed Oct 13, 2017
2 parents 96bc263 + 5cb68d9 commit 3f7b406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modoboa_webmail/lib/imapemail.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def fetch_headers(self, raw_addresses=False):
self.fetch_body_structure(msg)
msg = email.message_from_string(headers)
contacts_plugin_installed = exts_pool.get_extension("modoboa_contacts")
headers_with_address = ("From", "To", "Cc")
headers_with_address = ("From", "To", "Cc", "Reply-To")
for hdr in self.headernames:
label = hdr[0]
hdrvalue = self.get_header(msg, label, raw=raw_addresses)
Expand Down

0 comments on commit 3f7b406

Please sign in to comment.