83831 r=bienveu sr=mscott; don;t update the count if the copy has failed

and also continue to copy messsages even if one fails inbetween, for
multiple messages.
This commit is contained in:
naving%netscape.com 2001-06-29 06:00:47 +00:00
Родитель aa39bdfb4e
Коммит 432505bf57
2 изменённых файлов: 12 добавлений и 10 удалений

Просмотреть файл

@ -3885,11 +3885,14 @@ nsImapMailFolder::OnStopRunningUrl(nsIURI *aUrl, nsresult aExitCode)
case nsIImapUrl::nsImapAppendMsgFromFile:
case nsIImapUrl::nsImapAppendDraftFromFile:
if (m_copyState)
{
if (NS_SUCCEEDED(aExitCode))
{
if (folderOpen)
UpdateFolder(aWindow);
else
UpdatePendingCounts(PR_TRUE, PR_FALSE);
}
m_copyState->m_curIndex++;
if (m_copyState->m_curIndex >= m_copyState->m_totalCount)
{

Просмотреть файл

@ -1158,8 +1158,7 @@ PRBool nsImapProtocol::ProcessCurrentURL()
}
m_lastActiveTime = PR_Now(); // ** jt -- is this the best place for time stamp
SetFlag(IMAP_CLEAN_UP_URL_STATE);
if (NS_SUCCEEDED(rv) && GetConnectionStatus() >= 0 && GetServerStateParser().LastCommandSuccessful()
&& m_imapMiscellaneousSink && m_runningUrl)
if (GetConnectionStatus() >= 0 && m_imapMiscellaneousSink && m_runningUrl)
{
m_imapMiscellaneousSink->CopyNextStreamMessage(this, m_runningUrl);
WaitForFEEventCompletion();