-
-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement copyMove() function #494
Labels
Comments
Do you |
Yes |
I moved from https://github.com/tedious/Fetch/blob/master/src/Fetch/Message.php#L788 where move worked fine, because it uses |
Released in v1.12.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
imap_mail_move()
doesn't always work moving messages (Exchange has problems with it, for one), it would be nice with acopyMove()
function that implementsimap_mail_copy()
with the\CP_MOVE
optionWorkaround currently looks like this:
imap_mail_copy($imapConnection->getResource()->getStream(), (string) $_message->getNumber(), $imapMailbox>getEncodedName(), \CP_UID | \CP_MOVE);
The text was updated successfully, but these errors were encountered: