Summary: | KWallet stores, but does not allow connections when retrieving from kwallet. | ||
---|---|---|---|
Product: | [Unmaintained] kopete | Reporter: | Cal Goodman <cal-kopete> |
Component: | libkopete | Assignee: | Kopete Developers <kopete-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | major | CC: | cvanwijk, frederic, heinrich.wendel |
Priority: | NOR | ||
Version: | 0.8.0 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: |
Set rememberPassword before saving the config
New try |
Description
Cal Goodman
2004-01-12 17:40:40 UTC
The problem is that the config is saved before the rememberPassword flag is processed... will attach a patch. Martijn Created attachment 4210 [details]
Set rememberPassword before saving the config
Please review. I can't commit myself because my local version of the file has
tons of other stuff, so someone else should commit after review.
I consider this a showstopper for KDE 3.2 btw, so feel free to commit now.
Martijn
Martijn: and now a *real* patch please? :-) *** Bug 69239 has been marked as a duplicate of this bug. *** Created attachment 4212 [details]
New try
What the $@$@#$%@#$ is KHTML doing with my patch?
Trying again.
Subject: KDE_3_2_BRANCH: kdenetwork/kopete/libkopete CVS commit by ogoffart: Martijn's patch to fix the major bug 72490 CCMAIL: 72490-done@bugs.kde.org Can someone commit it on HEAD? thanks M +3 -3 kopeteaccount.cpp 1.78.2.1 --- kdenetwork/kopete/libkopete/kopeteaccount.cpp #1.78:1.78.2.1 @@ -327,9 +327,9 @@ QString KopeteAccount::password( bool er if ( passwdDialog->exec() == QDialog::Accepted ) { - pass = view->m_password->text(); - if ( view->m_save_passwd->isChecked() ) - setPassword( pass ); d->rememberPassword = view->m_save_passwd->isChecked(); d->autologin = view->m_autologin->isChecked(); + pass = view->m_password->text(); + if ( d->rememberPassword ) + setPassword( pass ); } else *** Bug 73036 has been marked as a duplicate of this bug. *** This bug is still present in kopete-0.8.0 from KDE-3.2 final (RPMs from kde-redhat.sf.net). Do you have any plans of immediate release of kopete-0.8.1? kopete is unusable in its current form :-((( Well, it works fine for me, and presumably for everyone else who tried it, since this would be a pretty obvious bug. Perhaps you could be more specific about the problem, or anything which might make your system be different to ours. There will be a release of KDE 3.2.1 (and Kopete 0.8.1 for KDE 3.1 users) sometime around the 1st week or two of March. Could you reopen this bug ? or set it to "New" ? I have this problem with Kopete in Mandrake 10.1 Community. see http://qa.mandrakesoft.com/show_bug.cgi?id=8361 if you open Kopete for the first time, you enter accounts parameters and passwords in the "Configuration window". Then if you do File-> Connect All, Kopete ask again for passwords even if they were correctly given in the configuration step versions installed : KDE 3.2.3 libkdenetwork2-kopete-3.2.3-15mdk kdenetwork-kopete-3.2.3-15mdk Thanks Fred no, we won't reopen the bug because it's already fixed in KDE 3.3. Please upgrade |