imap: Fixed SELECT not being performed for custom requests

This commit is contained in:
Steve Holme 2013-03-07 22:56:19 +00:00
parent cc890906b1
commit 170ae51c47

View File

@ -1873,7 +1873,7 @@ static CURLcode imap_perform(struct connectdata *conn, bool *connected,
else if(!imap->custom && selected && imap->uid)
/* FETCH from the same mailbox */
result = imap_fetch(conn);
else if(imap->uid)
else if(imap->mailbox && !selected && (imap->custom || imap->uid))
/* SELECT the mailbox */
result = imap_select(conn);
else