Browse Source

Improve email search results

Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling 1 year ago
parent
commit
269df904a3
1 changed files with 6 additions and 0 deletions
  1. 6 0
      lib/private/Collaboration/Collaborators/MailPlugin.php

+ 6 - 0
lib/private/Collaboration/Collaborators/MailPlugin.php

@@ -101,6 +101,12 @@ class MailPlugin implements ISearchPlugin {
 			return false;
 		}
 
+		// Extract the email address from "Foo Bar <foo.bar@example.tld>" and then search with "foo.bar@example.tld" instead
+		$result = preg_match('/<([^@]+@.+)>$/', $search, $matches);
+		if ($result && filter_var($matches[1], FILTER_VALIDATE_EMAIL)) {
+			return $this->search($matches[1], $limit, $offset, $searchResult);
+		}
+
 		$currentUserId = $this->userSession->getUser()->getUID();
 
 		$result = $userResults = ['wide' => [], 'exact' => []];