Version: unspecified (using KDE 4.7.0) OS: Linux void POP3Resource::loginJobResult( KJob *job ) { if ( job->error() ) { kDebug() << job->error() << job->errorText(); if ( job->error() == KIO::ERR_COULD_NOT_LOGIN && !Settings::self()->storePassword() ) mAskAgain = true; const QString errorString = i18n( "Unable to login to the server %1.", Settings::self()->host() ) + '\n' + job->errorString(); cancelSync( errorString ); KMessageBox::sorry( 0, errorString ); } else { advanceState( List ); } } if i leave my computer offline for a whole night this piece of code will fuck my mind with 100000000 message boxes. How can I turn this feature off ? Reproducible: Always
*** This bug has been marked as a duplicate of bug 243605 ***