Skip to content

Commit

Permalink
Merge branch '1.0' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanjeev Papnoi committed Jul 22, 2020
2 parents 6e8d29f + 7dec5e9 commit 1228cb9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG-1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ CHANGELOG for 1.0.x

This changelog references any relevant changes introduced in 1.0 minor versions.

* 1.0.9 (2020-07-22)
* **Issue #57:** Can't see embedded images in ticket.
* **Issue #56:** refresh-mailbox produces Parse Error.

* 1.0.8 (2020-05-26)
* **Misc. Updates:**
* Added some condition to remove redundency of tickets when more conversation between customer and agent and ticket get duplicates.
Expand All @@ -23,7 +27,7 @@ This changelog references any relevant changes introduced in 1.0 minor versions.
* **Issue #38:** Issue for imap host field when add host inside qoutes ' '.
* **Issue #28:** Error while edit disable mailbox.
* **Issue #50:** Email setting are not being update in production mode.
* **Issue #51:** Duplicate entry for ticket when running refresh command second time.
* **Issue #51:** Duplicate entry for ticket when running refresh command second time.

* 1.0.3 (2019-11-15)
* **Issue #46:** IMAP not creating tickets
Expand Down
2 changes: 1 addition & 1 deletion Services/MailboxService.php
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public function processMail($rawEmail)
// Process Mail - Content
$htmlFilter = new HTMLFilter();
$mailData['subject'] = $parser->getHeader('subject');
$mailData['message'] = autolink($htmlFilter->addClassEmailReplyQuote($parser->getMessageBody('html')));
$mailData['message'] = autolink($htmlFilter->addClassEmailReplyQuote($parser->getMessageBody('htmlEmbedded')));
$mailData['attachments'] = $parser->getAttachments();

if (!$mailData['message']) {
Expand Down

0 comments on commit 1228cb9

Please sign in to comment.