You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Cannot move or copy Message because if the $status does not contain a uidnext key, then the copy or move function just gives up. My server does not give a uidnext key in the status.
Given this code from Message.php, then it is expected for the move process to fail if uidnext is missing.
$this->client->openFolder($folder_path);
$status = $this->client->getConnection()->examineFolder($folder_path)->validatedData();
if (isset($status["uidnext"])) {
// actually move the message
}
returnnull;
The text was updated successfully, but these errors were encountered:
kylxbn
changed the title
Cannot copy or move because uidnext is not in the $status array
Cannot copy or move Message because uidnext is not in the $status array
Apr 7, 2025
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
Cannot move or copy Message because if the
$status
does not contain auidnext
key, then the copy or move function just gives up. My server does not give auidnext
key in the status.Used config
Code to Reproduce
The troubling code section which produces the reported bug.
Expected behavior
Message is moved to "INBOX.Processed" folder.
Screenshots
The message remains in the "INBOX" folder, as shown from the webmail and from Thunderbird.
Server:
Additional context
Xserver does not give a "uidnext" parameter so I can't move or copy the message. Here's what Xserver gives me:
Given this code from
Message.php
, then it is expected for the move process to fail ifuidnext
is missing.The text was updated successfully, but these errors were encountered: