I'm trying to move messages away from Inbox into Processed label with this code:

$inbox = imap_open($host,$user,$pass) or die('Error: ' . imap_last_error());

if( $emails = imap_search($inbox,'ALL') )
{
    foreach($emails as $email_number) {
        imap_mail_move($inbox, $email_number, 'Processed') or die('Error');
    }

}
imap_expunge($inbox);
imap_close($inbox);

Unfortunately, while the messages get the Processed label, they're still left in Inbox too.

How would I make them go away from Inbox?

link|improve this question

54% accept rate
Labels are not folders, regardless of how they're represented over IMAP. – Ignacio Vazquez-Abrams Nov 26 '11 at 11:15
Sure. Do you have a solution? – Henno Nov 26 '11 at 11:19
There is no solution. You're misinterpreting the problem in the first place. – Ignacio Vazquez-Abrams Nov 26 '11 at 11:21
So your're telling me there is absolutely no way to label a message as 'Processed' and archive it from the Inbox using IMAP and PHP? – Henno Nov 26 '11 at 11:32
PHP doesn't matter in the equation. IMAP is not a complete replacement for the web interface. – Ignacio Vazquez-Abrams Nov 26 '11 at 11:33
show 1 more comment
feedback

3 Answers

You have to move the message to the "[Gmail]/All Mail" folder, after you "move it" to a tag folder which is not really a folder as Gmail see's it, just letting Gmail know to add that tag.

So through IMAP:

1) When a message is moved to "[Gmail]/TAG" folder it tells Gmail to add the "TAG" to the message, but does not do any sort of moving of the message.

2) When a message is moved to "[Gmail]/All Mail" folder it tells Gmail to remove it from the Inbox.

link|improve this answer
feedback
up vote 1 down vote accepted

Actually... The reason why the emails were left in the inbox was that when imap_mail_move did it's thing, the IDs of all the leftover messages got decremented by one, so when the foreach loop moved to the next message, one message was left behind. This skipping a message repeated for every iteration. That's why it seemed that imap_mail_move was not working.

The solution is to use unique message UIDs instead of potentially repeating IDs:

$inbox  = imap_open( $host, $user, $pass );
$emails = imap_search( $inbox, 'ALL', SE_UID );

if( $emails ) {
    foreach( $emails as $email_uid ) {
        imap_mail_move($inbox, $email_uid, 'processed', CP_UID);
    }
}
link|improve this answer
feedback

@Henno, your diagnosis is correct but you could have simply sorted the emails in descending order.

$inbox = imap_open($host,$user,$pass) or die('Error: ' . imap_last_error());

if( $emails = imap_search($inbox,'ALL') )
{
    arsort($emails); //JUST DO ARSORT
    foreach($emails as $email_number) {
        imap_mail_move($inbox, $email_number, 'Processed') or die('Error');
    }

}
imap_expunge($inbox);
imap_close($inbox);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.