Bugfix: FetchType::INDEX was missing in ImapClient::Fetch

This commit is contained in:
djmaze 2022-01-07 15:11:04 +01:00
parent e4763a03ef
commit b9c18966ea

View file

@ -42,6 +42,7 @@ trait Messages
$this->aFetchCallbacks = array();
try {
$aFetchItems = array(
FetchType::INDEX,
FetchType::UID,
FetchType::RFC822_SIZE
);