Reverting that commit from the SSL fix. It works without this anyways and

I tested downloading multiple times without problems.  I don't know if this
is the problem reported just now on kmail@ or not, but please tell me if it
does fix it.

svn path=/trunk/kdenetwork/kmail/; revision=99656
wilder-work
George Staikos 25 years ago
parent 65fd842ee7
commit 83e1d850b5
  1. 8
      kmacctexppop.cpp

@ -564,9 +564,9 @@ void KMAcctExpPop::startJob() {
else if (mAuth != "AUTO") mSlaveConfig.insert("auth", mAuth);
slave = KIO::Scheduler::getConnectedSlave( url.url(), mSlaveConfig );
// This can't go here. It has to go in slotSlaveConnected()
// url.setPath(QString("/index"));
// job = KIO::get( url.url(), false, false );
// connectJob();
url.setPath(QString("/index"));
job = KIO::get( url.url(), false, false );
connectJob();
}
void KMAcctExpPop::slotJobFinished() {
@ -819,9 +819,11 @@ void KMAcctExpPop::slotSlaveError(KIO::Slave *aSlave, int error,
void KMAcctExpPop::slotSlaveConnected(KIO::Slave *aSlave)
{
#if 0
if (aSlave != slave) return;
KURL url = getUrl();
url.setPath(QString("/index"));
job = KIO::get( url.url(), false, false );
connectJob();
#endif
}

Loading…
Cancel
Save