MODSEQ requires 64-bit int

This commit is contained in:
the-djmaze 2023-03-03 10:51:16 +01:00
parent dae15e26d8
commit da2e56a8cb

View file

@ -315,6 +315,9 @@ class ImapClient extends \MailSo\Net\NetClient
if ($this->Settings->disable_list_status) {
$aList = \array_diff($aList, ['LIST-STATUS']);
}
if (8 > PHP_INT_SIZE) {
$aList = \array_diff($aList, ['CONDSTORE']);
}
}
$this->aCapabilityItems = $aList;
}