CVS commit by tilladam: Make sure the noop timer is restarted when we connect a new slave. M +2 -0 imapaccountbase.cpp 1.116 --- kdepim/kmail/imapaccountbase.cpp #1.115:1.116 @@ -279,4 +279,5 @@ namespace KMail { if ( mSlave->isConnected() ) { mSlaveConnected = true; + mNoopTimer.start( 60000 ); // make sure we start sending noops again return Connected; } @@ -506,4 +507,5 @@ namespace KMail { if (aSlave != mSlave) return; mSlaveConnected = true; + mNoopTimer.start( 60000 ); // make sure we start sending noops again emit connectionResult( 0, QString::null ); // success }