mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 11:48:28 +08:00
Merge pull request #2910 from techAPJ/patch-1
emails from microsoft outlook 14 were not getting parsed as text
This commit is contained in:
commit
842dbed74a
|
@ -115,7 +115,7 @@ module Email
|
|||
text = fix_charset message.text_part
|
||||
# TODO picking text if available may be better
|
||||
# in case of email reply from MS Outlook client, prefer text
|
||||
if (text && !html) || (text && message.header.to_s =~ /X-MS-Has-Attach/)
|
||||
if (text && !html) || (text && (message.header.to_s =~ /X-MS-Has-Attach/ || message.header.to_s =~ /Microsoft Outlook/))
|
||||
return text
|
||||
end
|
||||
elsif message.content_type =~ /text\/html/
|
||||
|
|
Loading…
Reference in New Issue
Block a user