mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 21:22:47 +00:00
properly logout of imap connections when shutting down sr=mscott 115349
This commit is contained in:
parent
bb87ef826a
commit
f62b6fc2e1
@ -802,6 +802,7 @@ nsresult nsImapProtocol::SetupWithUrl(nsIURI * aURL, nsISupports* aConsumer)
|
||||
// open buffered, blocking output stream
|
||||
rv = m_transport->OpenOutputStream(nsITransport::OPEN_BLOCKING, 0, 0, getter_AddRefs(m_outputStream));
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
SetFlag(IMAP_CONNECTION_IS_OPEN);
|
||||
}
|
||||
}
|
||||
} // if m_runningUrl
|
||||
@ -994,28 +995,18 @@ nsImapProtocol::TellThreadToDie(PRBool isSafeToClose)
|
||||
nsImapServerResponseParser::kFolderSelected && isSafeToClose;
|
||||
nsCString command;
|
||||
nsresult rv = NS_OK;
|
||||
PRUint32 writeCount;
|
||||
|
||||
if (m_currentServerCommandTagNumber > 0)
|
||||
{
|
||||
if (closeNeeded && GetDeleteIsMoveToTrash() &&
|
||||
TestFlag(IMAP_CONNECTION_IS_OPEN) && m_outputStream)
|
||||
{
|
||||
IncrementCommandTagNumber();
|
||||
command = GetServerCommandTag();
|
||||
command.Append(" close" CRLF);
|
||||
rv = m_outputStream->Write(command.get(), command.Length(),
|
||||
&writeCount);
|
||||
Log("SendData", "TellThreadToDie", command.get());
|
||||
Close();
|
||||
}
|
||||
|
||||
if (NS_SUCCEEDED(rv) && TestFlag(IMAP_CONNECTION_IS_OPEN) && m_outputStream)
|
||||
{
|
||||
IncrementCommandTagNumber();
|
||||
command = GetServerCommandTag();
|
||||
command.Append(" logout" CRLF);
|
||||
rv = m_outputStream->Write(command.get(), command.Length(),
|
||||
&writeCount);
|
||||
Logout();
|
||||
Log("SendData", "TellThreadToDie", command.get());
|
||||
}
|
||||
}
|
||||
@ -5360,7 +5351,7 @@ void nsImapProtocol::Logout()
|
||||
ProgressEventFunctionUsingId (IMAP_STATUS_LOGGING_OUT);
|
||||
|
||||
/******************************************************************
|
||||
* due to the undo functionality we cannot issule a close when logout; there
|
||||
* due to the undo functionality we cannot issue a close when logout; there
|
||||
* is no way to do an undo if the message has been permanently expunge
|
||||
* jt - 07/12/1999
|
||||
|
||||
@ -5379,8 +5370,8 @@ void nsImapProtocol::Logout()
|
||||
|
||||
nsresult rv = SendData(command.get());
|
||||
// the socket may be dead before we read the response, so drop it.
|
||||
if (NS_SUCCEEDED(rv))
|
||||
ParseIMAPandCheckForNewMail();
|
||||
if (NS_SUCCEEDED(rv))
|
||||
ParseIMAPandCheckForNewMail();
|
||||
}
|
||||
|
||||
void nsImapProtocol::Noop()
|
||||
@ -6999,7 +6990,7 @@ void nsImapProtocol::Check()
|
||||
{
|
||||
//ProgressUpdateEvent("Checking mailbox...");
|
||||
|
||||
IncrementCommandTagNumber();
|
||||
IncrementCommandTagNumber();
|
||||
|
||||
nsCString command(GetServerCommandTag());
|
||||
command.Append(" check" CRLF);
|
||||
|
Loading…
x
Reference in New Issue
Block a user