diff --git a/CHANGELOG.md b/CHANGELOG.md index b858e7a..746f24f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Nothing so far +## [1.5.1](https://github.com/creecros/Mailmagik/releases/tag/1.5.1) - 2024-09-03 + +### Fixed + +- [#47](https://github.com/creecros/Mailmagik/issues/47) Task mail parsing collides with CommentOnTask, makes it non-functional. + ## [1.5.0](https://github.com/creecros/Mailmagik/releases/tag/1.5.0) - 2024-08-19 ### Added diff --git a/Helper/MailHelper.php b/Helper/MailHelper.php index bd91926..8d4d31e 100644 --- a/Helper/MailHelper.php +++ b/Helper/MailHelper.php @@ -83,7 +83,7 @@ public function getUnseenMails(&$mailbox, $prefix) $method = $this->configModel->get('mailmagik_parse_via', '1'); if ($method == 2) { - return $this->searchMailbox($mailbox, 'UNSEEN SUBJECT "'. $prefix . '"'); + return $this->searchMailbox($mailbox, 'UNSEEN SUBJECT "['. $prefix . '"'); } else { return $this->searchMailbox($mailbox, 'UNSEEN TO ' . $prefix); } diff --git a/Plugin.php b/Plugin.php index 54e5704..c94072c 100644 --- a/Plugin.php +++ b/Plugin.php @@ -84,7 +84,7 @@ public function getPluginAuthor() public function getPluginVersion() { - return '1.5.0'; + return '1.5.1'; } public function getPluginDescription()