Mail Parser: Completely remove Webklex IMAP and all dependcies

This commit is contained in:
johnnyq
2026-06-24 13:39:07 -04:00
parent 63ad3256ee
commit 171a0d38f8
779 changed files with 6408 additions and 82971 deletions

View File

@@ -270,6 +270,14 @@ class ImapQueryBuilder
return $this->where(ImapSearchKey::Header->value." $header", $value);
}
/**
* Add a where "HEADER Message-ID" clause to the query.
*/
public function messageId(string $messageId): static
{
return $this->header('Message-ID', trim(trim($messageId), '<>'));
}
/**
* Add a where "UID" clause to the query.
*/