Dispatch NOOP commands on open folders only.

This commit is contained in:
Vincent Richard 2013-07-16 22:04:56 +02:00
parent 477e90ffba
commit c14be7ec9c

View File

@ -198,6 +198,7 @@ void IMAPStore::noop()
for (std::list <IMAPFolder*>::iterator it = m_folders.begin() ;
it != m_folders.end() ; ++it)
{
if ((*it)->isOpen())
(*it)->noop();
}
}