Version: 0.6.90cvs >= 20030426 (using KDE 3.1.9) Compiler: gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5) OS: Linux (i686) release 2.4.20 Kopete dissapeared my MSN contacts, i dont know if it erased them from the server, but my lists are empty !! :(...if some of my contact open a chat it appears in a section named: Not in your contact list Keep up the great job... Cheers...
This problem may happen because you have deleted the contactlist.xml The contactlist is not automaticaly retreived from server to to retreive the contactlist from server, two solution: 1) in the msn's debug menu: send raw command: command: SYN and paramettre 0 2) edit accounts.xml and remove the contactlist's serial (set it to 0) if that still not work there is a problem...
Subject: kdenonbeta/kopete/protocols/msn CVS commit by ogoffart: Force to reload the contactlist from server if the contactlist.xml file has been deleted CCMAIL: 58048-done@bugs.kde.org M +8 -0 msnaccount.cpp 1.27 --- kdenonbeta/kopete/protocols/msn/msnaccount.cpp #1.26:1.27 @@ -107,4 +107,12 @@ void MSNAccount::connect() m_badpassword=false; + if(contacts().count() <= 1) + { + //Maybe the contactlist.xml has been removed, and the serial number not updated + // (the 1 is for the myself contact) + setPluginData(protocol() , "serial" , "0" ); + } + + m_notifySocket = new MSNNotifySocket( this, accountId() );