[Bug 289097] error "Unable to fetch item from backend" when entering IMAP folder

2012-05-31 Thread Roland Leißa
https://bugs.kde.org/show_bug.cgi?id=289097

--- Comment #34 from Roland Leißa  ---
After I've switched from networkmanager to wicd (for other reasons) all these
problems magically faded.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 293098] KAddressbook/Akonadi stores CATEGORIES escaped the wrong way

2012-05-31 Thread Ingo Ratsdorf
https://bugs.kde.org/show_bug.cgi?id=293098

--- Comment #8 from Ingo Ratsdorf  ---
vcardtool assumes that categories are stored in a QStringList:

creating VCard data

142if ( version == VCard::v3_0 ) {
143  QStringList categories = (*addrIt).categories();
144  QStringList::Iterator catIt;
145  for ( catIt = categories.begin(); catIt != categories.end();
++catIt ) {
146(*catIt).replace( QLatin1Char( ',' ), QLatin1String( "\\," ) );
147  }
148
149  VCardLine catLine( QLatin1String( "CATEGORIES" ), categories.join(
QLatin1String( "," ) ) );
150  card.addLine( catLine );
151}

The code seems to be okay. It replaces all commas within each string (category)
with '\,' which is correct.
It then joins it all together using plain ','.
This is according to RFC

parsing VCard Data

364  static const QLatin1Char commaSep( ',' );

428else if ( identifier == QLatin1String( "categories" ) ) {
429  const QStringList categories = splitString( commaSep,
(*lineIt).value().toString() );
430  addr.setCategories( categories );
431}

Addr is apparently defined in kabc/addressee.cpp, however I cannot find that
file!!!

=

ASSUMPTION: KAddressbook or underlaying packages are not using QStringlist but
store one single CATEGORIES string in QStringlist,
hence all commas within are replaced.

Does that make sense to anyone?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 293098] KAddressbook/Akonadi stores CATEGORIES escaped the wrong way

2012-05-31 Thread Ingo Ratsdorf
https://bugs.kde.org/show_bug.cgi?id=293098

Ingo Ratsdorf  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|UPSTREAM|---

--- Comment #7 from Ingo Ratsdorf  ---
Sorry, my wrong. KOrganiser does sync calendar CATEGORIES now correctly, but
KAddressbook is still doing it wrong. And it still does not sync or export
FBURL.
Strange bug. It stores it incorrectly in Akonadi, so I guess it's not a bug in
KAddressbook but in one of the underlaying libs. One of the bugs in
KAddressbook re birthday display has recently been resolved.
I'll dig a bit in the git repos to find the origin.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 299203] Tooltip on an item in the message list shows the wrong Preview

2012-05-31 Thread Allen Winter
https://bugs.kde.org/show_bug.cgi?id=299203

Allen Winter  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||chrig...@fastmail.fm
 Resolution|--- |INVALID

--- Comment #1 from Allen Winter  ---
Christian helped me regenerate my nepomuk database from scratch and now I don't
have this problem.  Christian also looked at the code that gets the preview
from Nepomuk and he verified the code was fine.

Closing as INVALID -- assuming somehow during development and testing and bug
fixing over the past years caused a corrupt nepomuk database.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 298962] Kmail sometimes causes emails from an IMAP folder to be blank and also wipes them out in the IMAP folder

2012-05-31 Thread Orang_Gila
https://bugs.kde.org/show_bug.cgi?id=298962

--- Comment #5 from Orang_Gila  ---
These are basically the only recent errors I constantly see in the mysql.err or
mysql.err.old
files located in Akonadi MySQL server directory you mentioned.

akonadi-server1.6.2-2+b1
mate-desktop1.2.0-3+wheezy(a GNOME 2.3 fork)
kontactnot installed

--
120531 14:10:08 [Note] Plugin 'FEDERATED' is disabled.
120531 14:10:08  InnoDB: Initializing buffer pool, size = 80.0M
120531 14:10:08  InnoDB: Completed initialization of buffer pool
InnoDB: The log sequence number in ibdata files does not match
InnoDB: the log sequence number in the ib_logfiles!
120531 14:10:08  InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Restoring possible half-written data pages from the doublewrite
InnoDB: buffer...
InnoDB: Last MySQL binlog file position 0 923, file name ./mysql-bin.000909
120531 14:10:08  InnoDB: Started; log sequence number 0 20302258
120531 14:10:08 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.1.61-2-log'  socket:
'/home/username/.local/share/akonadi/socket-hostname/mysql.socket'  port: 0 
(Debian)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 293098] KAddressbook/Akonadi stores CATEGORIES escaped the wrong way

2012-05-31 Thread Ingo Ratsdorf
https://bugs.kde.org/show_bug.cgi?id=293098

--- Comment #6 from Ingo Ratsdorf  ---
Hmm, strange. I did a sync via CardDAV using the groupdav resource and traced
conversation using WireShark. And all was fine, only commas ",", without the
backslashes "\,"...
So sync was perfect.
Is the akonadi groupdav resource maybe changing the encoding before it sends
it? And KAddressbook is using the original iCal library to export? Remember the
export is not done by Akonadi or it's resources...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 293098] KAddressbook/Akonadi stores CATEGORIES escaped the wrong way

2012-05-31 Thread Andreas Dick
https://bugs.kde.org/show_bug.cgi?id=293098

Andreas Dick  changed:

   What|Removed |Added

 CC||and...@gmx.ch

--- Comment #5 from Andreas Dick  ---
Hei Ingo
how did you have tested this?

I have just installed 4.8.3 on my Kubuntu 12.4
then I created just a simple addressbook (as plain file)
then I exported a dummy contact to as VCARD 3.0:
--
BEGIN:VCARD
CATEGORIES:Friends\,Familie
FN:Blabla
N:Blabla
UID:z3HxtI38VK
VERSION:3.0
END:VCARD
---
thus, the group seperator is still wrong for me: \,

Using the GroupDAV connector with SabreDAV is doing the same, but testing with 
the vcf3.0 export is a faster check

Andreas

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300961] New: KMail crash at/after upgrading KDE

2012-05-31 Thread Dimitar Peikov
https://bugs.kde.org/show_bug.cgi?id=300961

Bug ID: 300961
  Severity: crash
   Version: 4.8.3
  Priority: NOR
  Assignee: kdepim-bugs@kde.org
   Summary: KMail crash at/after upgrading KDE
Classification: Unclassified
OS: Linux
  Reporter: dimitar.pei...@gmail.com
  Hardware: openSUSE RPMs
Status: UNCONFIRMED
 Component: general
   Product: kmail2

Application: kmail (4.8.3)
KDE Platform Version: 4.8.3 (4.8.3) "release 504"
Qt Version: 4.8.1
Operating System: Linux 3.1.10-1.9-default i686
Distribution: "openSUSE 12.1 (i586)"

-- Information about the crash:
- What I was doing when the application crashed:
Update KDE to recent one, migration wizard was launched,
and when completed, KMail is not operational. Each restart repeats
same crash.

The crash can be reproduced every time.

-- Backtrace:
Application: KMail (kmail), signal: Aborted
[Current thread is 1 (Thread 0xb199a710 (LWP 3666))]

Thread 3 (Thread 0xb03f7b70 (LWP 3674)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S:170
#1  0xb5ef95cc in __pthread_cond_wait (cond=0xb4021430, mutex=0xb4021418) at
forward.c:139
#2  0xb38ff8fb in ?? () from /usr/lib/libQtWebKit.so.4
#3  0xb38ffa1f in ?? () from /usr/lib/libQtWebKit.so.4
#4  0xb5901a7d in start_thread (arg=0xb03f7b70) at pthread_create.c:301
#5  0xb5eebabe in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:133

Thread 2 (Thread 0xafacfb70 (LWP 3675)):
#0  0xb4635c90 in __GI_clock_gettime (clock_id=1, tp=0xafacf058) at
../sysdeps/unix/clock_gettime.c:115
#1  0xb6c3fb95 in do_gettime (frac=0xafacf050, sec=0xafacf048) at
tools/qelapsedtimer_unix.cpp:123
#2  qt_gettime () at tools/qelapsedtimer_unix.cpp:140
#3  0xb6d287f6 in QTimerInfoList::updateCurrentTime (this=0xaf101abc) at
kernel/qeventdispatcher_unix.cpp:343
#4  0xb6d28b5a in QTimerInfoList::timerWait (this=0xaf101abc, tm=...) at
kernel/qeventdispatcher_unix.cpp:450
#5  0xb6d27353 in timerSourcePrepareHelper (src=,
timeout=0xafacf13c) at kernel/qeventdispatcher_glib.cpp:136
#6  0xb457c44c in g_main_context_prepare () from /usr/lib/libglib-2.0.so.0
#7  0xb457d207 in ?? () from /usr/lib/libglib-2.0.so.0
#8  0xb457d7fa in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0
#9  0xb6d27eb7 in QEventDispatcherGlib::processEvents (this=0xaf100468,
flags=...) at kernel/qeventdispatcher_glib.cpp:426
#10 0xb6cf3d1d in QEventLoop::processEvents (this=0xafacf2d0, flags=...) at
kernel/qeventloop.cpp:149
#11 0xb6cf3fb9 in QEventLoop::exec (this=0xafacf2d0, flags=...) at
kernel/qeventloop.cpp:204
#12 0xb6bddd0c in QThread::exec (this=0x832abf0) at thread/qthread.cpp:501
#13 0xb6bdddfb in QThread::run (this=0x832abf0) at thread/qthread.cpp:568
#14 0xb6be11f0 in QThreadPrivate::start (arg=0x832abf0) at
thread/qthread_unix.cpp:298
#15 0xb5901a7d in start_thread (arg=0xafacfb70) at pthread_create.c:301
#16 0xb5eebabe in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:133

Thread 1 (Thread 0xb199a710 (LWP 3666)):
[KCrash Handler]
#6  0xb5e438c5 in __GI_raise (sig=6) at
../nptl/sysdeps/unix/sysv/linux/raise.c:64
#7  0xb5e451d5 in __GI_abort () at abort.c:93
#8  0xb6bd5c5a in qt_message_output (msgType=QtFatalMsg, buf=0x813dd00 "Fatal
Error: Accessed global static 'QList *sMemberList()' after
destruction. Defined at
/home/abuild/rpmbuild/BUILD/kdelibs-4.8.3/kdeui/widgets/kmainwindow.cpp:214")
at global/qglobal.cpp:2252
#9  0xb6bd5e5b in qt_message (msgType=QtFatalMsg, msg=0xb76d1108 "Fatal Error:
Accessed global static '%s *%s()' after destruction. Defined at %s:%d",
ap=0xbfdea5e4 "\252\235o\267\236\235o\267\004\235o\267\326") at
global/qglobal.cpp:2298
#10 0xb6bd5f78 in qFatal (msg=0xb76d1108 "Fatal Error: Accessed global static
'%s *%s()' after destruction. Defined at %s:%d") at global/qglobal.cpp:2481
#11 0xb742e37b in operator-> (this=) at
/usr/src/debug/kdelibs-4.8.3/kdeui/widgets/kmainwindow.cpp:214
#12 0xb7618008 in operator-> (this=) at
/usr/src/debug/kdelibs-4.8.3/kdeui/widgets/kmainwindow.cpp:214
#13 operator* (this=) at
/usr/src/debug/kdelibs-4.8.3/kdeui/widgets/kmainwindow.cpp:214
#14 KMainWindow::memberList () at
/usr/src/debug/kdelibs-4.8.3/kdeui/widgets/kmainwindow.cpp:1176
#15 0xb6f14814 in KMKernel::dumpDeadLetters() () from
/usr/lib/libkmailprivate.so.4
#16 0xb6f14ba0 in ?? () from /usr/lib/libkmailprivate.so.4
#17 0xb75adf9f in KCrash::defaultCrashHandler (sig=6) at
/usr/src/debug/kdelibs-4.8.3/kdeui/util/kcrash.cpp:307
#18 
#19 0xb5e438c5 in __GI_raise (sig=6) at
../nptl/sysdeps/unix/sysv/linux/raise.c:64
#20 0xb5e451d5 in __GI_abort () at abort.c:93
#21 0xb6bd5c5a in qt_message_output (msgType=QtFatalMsg, buf=0x85554a8 "Fatal
Error: Accessed global static 'KernelPrivate *sInstance()' after destruction.
Defined at
/home/abuild/rpmbuild/BUILD/kdepim-4.8.3/mailcommon/mailkernel.cpp:48") at
global/qglobal.cpp:2252
#22 0xb6bd5e5b in qt_message (msgType=QtFatalMsg, msg

[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Maf . King
https://bugs.kde.org/show_bug.cgi?id=259949

--- Comment #122 from Maf. King  ---
(In reply to comment #120)
> https://bugs.kde.org/show_bug.cgi?id=259949#c97 
> DOESN'T TALK JUST ABOUT PURGE , talks about you *need* upgrade akonadi 
> "After upgrading akonadi from 1.7.1 to 1.7.2  "

maf@calufrax:~> akonadiserver --version
Akonadi 1.7.2
maf@calufrax:~> kmail --version
Qt: 4.8.1
KDE Development Platform: 4.8.3 (4.8.3)
KMail: 4.8.3

Then I followed the procedure in #39 to remove all akonadi and nepomuk cache
info.

All addresses locally stored, no LDAP or Google etc to get in the way.

Waited for indexing to finish. Still no addressbook lookups in kmail, and a
borked kmail config as a nice bonus, too.  Mostly recovered lost email from
backups, but still too much grief to consider trying to flush nepomuk again. 
Waiting for either SuSE 12.2 or KDE SC 4.9 to try a fresh install.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Hannes Kuhnert
https://bugs.kde.org/show_bug.cgi?id=259949

--- Comment #121 from Hannes Kuhnert  ---
(In reply to comment #119)
> For me, deleting the nepomuk folder did nt help.
> I open the akonadi resources in systemsettings and i added a new resource
> from google-contacts, and i deleted older resources from google but with
> other names(!).

BTW, naming is irrelevant AFAIK. The resources of every type are identified by
sequentially assigned numbers. For example, if you deleted
“akonadi_maildir_resource_1” no Maildir resource will ever again get #1 in this
Akonadi environment.

> * I did a logout from kde and now the autocompletion work but only if i type
> the whole name of the contact.

Without reconfiguring anything I sometimes have it working that way in KDE
4.8.3, but that’s really only once in a while and I have no idea for what
reason it sometimes works and sometimes not.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300933] Kmail2 asks for the imap password on every boot

2012-05-31 Thread Dimitrios Glentadakis
https://bugs.kde.org/show_bug.cgi?id=300933

--- Comment #3 from Dimitrios Glentadakis  ---
After these settings: https://bugs.kde.org/show_bug.cgi?id=259949#c119

kmail proposed to store the password in kwallet and i said 'Yes for always' and
now kmail does nt ask for a password. So the cause of the problem was an
akonadi resource.

I will do some more tests and i will reply about the succes or not

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Sérgio Basto
https://bugs.kde.org/show_bug.cgi?id=259949

--- Comment #120 from Sérgio Basto  ---
https://bugs.kde.org/show_bug.cgi?id=259949#c97 
DOESN'T TALK JUST ABOUT PURGE , talks about you *need* upgrade akonadi 
"After upgrading akonadi from 1.7.1 to 1.7.2  "

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Dimitrios Glentadakis
https://bugs.kde.org/show_bug.cgi?id=259949

--- Comment #119 from Dimitrios Glentadakis  ---
For me, deleting the nepomuk folder did nt help.
I open the akonadi resources in systemsettings and i added a new resource from
google-contacts, and i deleted older resources from google but with other
names(!). I did some other changes in akonadi resources and in akonadiconsole
without knowing what i do. 

* I did a logout from kde and now the autocompletion work but only if i type
the whole name of the contact.

This has fixed (until now...) another problem that i have with the password:
https://bugs.kde.org/show_bug.cgi?id=300933

Unefortunately i am not capable to say what i did (many clicks in several names
(agents), deletion of many of them etc.) , i dont understand the set of
nepomuk-akonadi, and what they do in my system, not the role of the programs
but their elements in my system which i discover every time in several places
with different names.

Good luck !

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300959] New: Does not encrypt or sign from clipboard in Quick Mode

2012-05-31 Thread Jeff Smith
https://bugs.kde.org/show_bug.cgi?id=300959

Bug ID: 300959
  Severity: major
   Version: unspecified
  Priority: NOR
CC: m...@kde.org
  Assignee: kdepim-bugs@kde.org
   Summary: Does not encrypt or sign from clipboard in Quick Mode
Classification: Unclassified
OS: MS Windows
  Reporter: imaje...@hotmail.com
  Hardware: MS Windows
Status: UNCONFIRMED
 Component: general
   Product: kleopatra

My system:
AMD Athlon 64 X2 Dual
Windows XP Home (32bit), SP3
Notepad++ with plugin MultiClipboard (in case that affects anything but I did
not use this program to reproduce the bug)

(From Gpg4win 2.1.0)
Kleopatra
Version 2.1.0
Using KDE 4.1.4

I know keys work because they work for other plugins including Outlook 2003
(GpgOL) and file explorer (GpgEX). I've disabled either Quick Mode option and
each feature starts working fine. Enabling these options again makes the
respective feature not work again.


Reproducible: Always

Steps to Reproduce:
1. Options "Use 'Quick Mode' " when signing and when encrypting are enabled, I
think that was default.
2. Copy some text to clipboard from notepad.exe (which comes with windows)
3. Right-click on Kleopatra in the system tray and choose Clipboard ->
OpenPGP-Sign...
4. It shows correct key to sign with so I click 'Next', and enter my password
which is accepted.
5. No other messages are shown so I paste the clipboard to notepad.
Actual Results:  
Clipboard contents is unchanged (not signed, nor encrypted if I try that
feature).

Expected Results:  
Clipboard contents should be signed as it is when Quick Mode is disabled.

I guess different issue: The option to Decrypt/Verify from clipboard is
disabled and never works.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Richard Homonnai
https://bugs.kde.org/show_bug.cgi?id=259949

--- Comment #118 from Richard Homonnai  ---
(In reply to comment #117)
> (In reply to comment #116)
> > Would be nice, if there is another way than purging the nepomuk database,
> > since that means that I will loose all my tags.
> 
> Doesn't work for me on KDE 4.8.3 (OpenSuSE 12.1 with KDE repository from
> Factory)
> 
> Tried purging the neopmuk and akonadi stuff as outlined in this thread,
> ended up losing mails as mailboxes got the wrong expire settings as the
> caches rebuilt themselves. And still address matching didn't work.
> 
> Only auto complete that works for me is the recently used addresses, if I
> want an addressbook entry I have to use the "Select" button at the side of
> the To: field.

I can confirm this - Gentoo amd64 stable. Purging didn't help at all.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Maf . King
https://bugs.kde.org/show_bug.cgi?id=259949

Maf. King  changed:

   What|Removed |Added

 CC||m...@chilwell.net

--- Comment #117 from Maf. King  ---
(In reply to comment #116)
> Would be nice, if there is another way than purging the nepomuk database,
> since that means that I will loose all my tags.

Doesn't work for me on KDE 4.8.3 (OpenSuSE 12.1 with KDE repository from
Factory)

Tried purging the neopmuk and akonadi stuff as outlined in this thread, ended
up losing mails as mailboxes got the wrong expire settings as the caches
rebuilt themselves. And still address matching didn't work.

Only auto complete that works for me is the recently used addresses, if I want
an addressbook entry I have to use the "Select" button at the side of the To:
field.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300954] New: Crash while in message list

2012-05-31 Thread Ronnie Bailey
https://bugs.kde.org/show_bug.cgi?id=300954

Bug ID: 300954
  Severity: crash
   Version: unspecified
  Priority: NOR
  Assignee: kdepim-bugs@kde.org
   Summary: Crash while in message list
Classification: Unclassified
OS: Linux
  Reporter: pur...@wtxs.net
  Hardware: openSUSE RPMs
Status: UNCONFIRMED
 Component: general
   Product: kmail2

Application: kmail (4.7.4)
KDE Platform Version: 4.8.3 (4.8.3) "release 5"
Qt Version: 4.8.1
Operating System: Linux 3.1.10-1.9-default x86_64
Distribution: "openSUSE 12.1 (x86_64)"

-- Information about the crash:
- What I was doing when the application crashed:

Working with the message list. When I highlight a different message, the
program often crashes.

The crash can be reproduced some of the time.

-- Backtrace:
Application: KMail (kmail), signal: Aborted
82T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)
[Current thread is 1 (Thread 0x7f38eb6ff780 (LWP 11256))]

Thread 6 (Thread 0x7f38ccfde700 (LWP 11260)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162
#1  0x7f38dcf569dc in ?? () from /usr/lib64/libQtWebKit.so.4
#2  0x7f38dcf56b09 in ?? () from /usr/lib64/libQtWebKit.so.4
#3  0x7f38e682ef05 in start_thread (arg=0x7f38ccfde700) at
pthread_create.c:301
#4  0x7f38e8a2810d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 5 (Thread 0x7f38cc6dd700 (LWP 11261)):
#0  0x7fff7ef8d98f in clock_gettime ()
#1  0x7f38e0f36d9a in __GI_clock_gettime (clock_id=,
tp=) at ../sysdeps/unix/clock_gettime.c:115
#2  0x7f38e9faef64 in ?? () from /usr/lib64/libQtCore.so.4
#3  0x7f38ea085a4d in ?? () from /usr/lib64/libQtCore.so.4
#4  0x7f38ea085701 in ?? () from /usr/lib64/libQtCore.so.4
#5  0x7f38e0c82264 in g_main_context_check () from
/usr/lib64/libglib-2.0.so.0
#6  0x7f38e0c82ab2 in ?? () from /usr/lib64/libglib-2.0.so.0
#7  0x7f38e0c82f59 in g_main_context_iteration () from
/usr/lib64/libglib-2.0.so.0
#8  0x7f38ea0852e6 in
QEventDispatcherGlib::processEvents(QFlags) ()
from /usr/lib64/libQtCore.so.4
#9  0x7f38ea055012 in
QEventLoop::processEvents(QFlags) () from
/usr/lib64/libQtCore.so.4
#10 0x7f38ea055267 in
QEventLoop::exec(QFlags) () from
/usr/lib64/libQtCore.so.4
#11 0x7f38e9f55547 in QThread::exec() () from /usr/lib64/libQtCore.so.4
#12 0x7f38e9f5856b in ?? () from /usr/lib64/libQtCore.so.4
#13 0x7f38e682ef05 in start_thread (arg=0x7f38cc6dd700) at
pthread_create.c:301
#14 0x7f38e8a2810d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 4 (Thread 0x7f3883fff700 (LWP 11263)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:213
#1  0x7f38e9f589df in QWaitCondition::wait(QMutex*, unsigned long) () from
/usr/lib64/libQtCore.so.4
#2  0x7f38e9f4bdef in ?? () from /usr/lib64/libQtCore.so.4
#3  0x7f38e9f5856b in ?? () from /usr/lib64/libQtCore.so.4
#4  0x7f38e682ef05 in start_thread (arg=0x7f3883fff700) at
pthread_create.c:301
#5  0x7f38e8a2810d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 3 (Thread 0x7f38837fe700 (LWP 11264)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:213
#1  0x7f38e9f589df in QWaitCondition::wait(QMutex*, unsigned long) () from
/usr/lib64/libQtCore.so.4
#2  0x7f38e9f4bdef in ?? () from /usr/lib64/libQtCore.so.4
#3  0x7f38e9f5856b in ?? () from /usr/lib64/libQtCore.so.4
#4  0x7f38e682ef05 in start_thread (arg=0x7f38837fe700) at
pthread_create.c:301
#5  0x7f38e8a2810d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 2 (Thread 0x7f3882ffd700 (LWP 11265)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:213
#1  0x7f38e9f589df in QWaitCondition::wait(QMutex*, unsigned long) () from
/usr/lib64/libQtCore.so.4
#2  0x7f38e9f4bdef in ?? () from /usr/lib64/libQtCore.so.4
#3  0x7f38e9f5856b in ?? () from /usr/lib64/libQtCore.so.4
#4  0x7f38e682ef05 in start_thread (arg=0x7f3882ffd700) at
pthread_create.c:301
#5  0x7f38e8a2810d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 1 (Thread 0x7f38eb6ff780 (LWP 11256)):
[KCrash Handler]
#6  0x7f38e8981d95 in __GI_raise (sig=6) at
../nptl/sysdeps/unix/sysv/linux/raise.c:64
#7  0x7f38e89832ab in __GI_abort () at abort.c:93
#8  0x7f38e8fb1f2d in __gnu_cxx::__verbose_terminate_handler() () from
/usr/lib64/libstdc++.so.6
#9  0x7f38e8fb00d6 in ?? () from /usr/lib64/libstdc++.so.6
#10 0x7f38e8fb0103 in std::terminate() () from /usr/lib64/libstdc++.so.6
#11 0x7f38e8fb0246 in __cxa_rethrow () from /usr/lib64/libstdc++.so.6
#12 0x7f38ea0554fc in
QEventLoop::exec(QFlags) () from
/usr/lib64/libQtCore.so.4
#13 0x7

[Bug 261788] akonadi_agent_launcher segfaults when stopping the Akonadi server

2012-05-31 Thread Eric Thiele
https://bugs.kde.org/show_bug.cgi?id=261788

Eric Thiele  changed:

   What|Removed |Added

 CC|b...@donewell.de|

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Rettich
https://bugs.kde.org/show_bug.cgi?id=259949

--- Comment #116 from Rettich  ---
Would be nice, if there is another way than purging the nepomuk database, since
that means that I will loose all my tags.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300047] CardDav not syncing, no errors, while CalDav is ok for the same resource

2012-05-31 Thread Benjamin
https://bugs.kde.org/show_bug.cgi?id=300047

Benjamin  changed:

   What|Removed |Added

 CC||m...@benjamin-behringer.de

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300945] New: when printing, kmail doesn't transform from pretty date format to something absolute (yesterday -> 30.05.2012)

2012-05-31 Thread stefan
https://bugs.kde.org/show_bug.cgi?id=300945

Bug ID: 300945
  Severity: minor
   Version: unspecified
  Priority: NOR
  Assignee: kdepim-bugs@kde.org
   Summary: when printing, kmail doesn't transform from pretty
date format to something absolute (yesterday ->
30.05.2012)
Classification: Unclassified
OS: Linux
  Reporter: stth1...@web.de
  Hardware: Ubuntu Packages
Status: UNCONFIRMED
 Component: misc
   Product: kmail2

V 4.7.3

If the date on a mail printout matters, it's bad if there is "yesterday" or
"today" in the header.

if such a style is used, kmail should ask for the date format or an alternative
print style should be selectable in the config.

Reproducible: Always

Steps to Reproduce:
1. in config select apperance (Erscheinungsbild)
2. in tab message list (Nachrichtenliste)
3. select the third bullet under date format (Dekoratives Format)
4. apply
5. print a mail from yesterday

sorry, I was to lazy to swich to language to check if the english menus are
translated correctly
Actual Results:  
in the header there is the date "yesterday"

Expected Results:  
in the header there should be the date "30.05.2012" or any other absolute date
format

Work around: change date format for printing and back afterwards (but it's
always one wasted page because you get it after you read what you printed)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Sérgio Basto
https://bugs.kde.org/show_bug.cgi?id=259949

--- Comment #115 from Sérgio Basto  ---
https://bugs.kde.org/show_bug.cgi?id=259949#c97

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259949] Kmail does not use all addressbooks for autocompletion

2012-05-31 Thread Dimitrios Glentadakis
https://bugs.kde.org/show_bug.cgi?id=259949

Dimitrios Glentadakis  changed:

   What|Removed |Added

 CC||dgl...@gmail.com

--- Comment #114 from Dimitrios Glentadakis  ---
It means that the auto completion works in 4.8.3 ?
I have kde 4.8.2 and the autocompletion works only for the recently used
address and not for the addresses present in the akonadi contacts.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300937] Attachments within S/MIME mails which are "both" encrypted and signed cannot be saved

2012-05-31 Thread Yuri Carvalho
https://bugs.kde.org/show_bug.cgi?id=300937

Yuri Carvalho  changed:

   What|Removed |Added

Version|unspecified |4.8.2

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300937] New: Attachments within S/MIME mails which are "both" encrypted and signed cannot be saved

2012-05-31 Thread Yuri Carvalho
https://bugs.kde.org/show_bug.cgi?id=300937

Bug ID: 300937
  Severity: normal
   Version: unspecified
  Priority: NOR
  Assignee: kdepim-bugs@kde.org
   Summary: Attachments within S/MIME mails which are "both"
encrypted and signed cannot be saved
Classification: Unclassified
OS: Linux
  Reporter: yuri...@gmail.com
  Hardware: Ubuntu Packages
Status: UNCONFIRMED
 Component: crypto
   Product: kmail2

Attachments within S/MIME mails which are "both" encrypted and signed cannot be
saved. Below follows an example of some fields of the e-mail header:

Content-Type: application/pkcs7-mime; name="smime.p7m";
smime-type="enveloped-data"
Content-Disposition: attachment; filename="smime.p7m"
Content-Transfer-Encoding: base64
MIME-Version: 1.0

I have verified the same problem even when the mail is sent from different
clients (Outlook or KMail itself).

This is similar to Bug 294272, but in this case it is related to S/MIME
messages which are "both" signed and encrypted. If the message is only signed,
or only encrypted, the problem does not occur.


Reproducible: Always

Steps to Reproduce:
Receive an S/MIME message, which is both signed and encrypted, containing an
attachment.
Actual Results:  
An attachment is displayed as a link inside the message window, but the link
cannot be opened / downloaded. There does not seem to be any way to view or
save the attachment.

Expected Results:  
The link / attachment should be downloadable / saveable.

Similar to Bug 294272, but in this case it is related to S/MIME messages which
are both signed and encrypted. If the message is only signed, or only
encrypted, the problem does not occur.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 214140] kmail creates zombie processes

2012-05-31 Thread OSidorkin
https://bugs.kde.org/show_bug.cgi?id=214140

osidor...@gmail.com changed:

   What|Removed |Added

 CC||osidor...@gmail.com

--- Comment #3 from osidor...@gmail.com ---
I've done some investigation using ktrace and switching between signed and
unsigned mails that causes new zombies creation. 
Seems that Kmail starts gpg2 in background using double fork invocation, and
the thread forked first becomes zombie.

Here is the trace:
 31180 kmailCALL  fork
 31180 kmailRET   fork 31843/0x7c63   <-- 31843 will become zombie
 31843 kmailRET   fork 0
 31843 kmailCALL  thr_self(0x82150c400)
 31843 kmailRET   thr_self 0
 31180 kmailCALL  sigprocmask(SIG_SETMASK,0x82150c4e8,0)
 31180 kmailRET   sigprocmask 0
 31180 kmailCALL  wait4(0x7c63,0x7edf6b6c,0<>0,0)
 31843 kmailCALL  getpid
 31843 kmailRET   getpid 31843/0x7c63  <-- 31843 verifies if it is forked
process
.
 31843 kmailCALL  fork <-- 31843 forks again

 31843 kmailRET   fork 31844/0x7c64
 31844 kmailRET   fork 0   <-- 31844 is child of 31843 

 31844 kmailCALL  getpid
 31844 kmailRET   getpid 31844/0x7c64 
...
then 31844 closes many file descriptors
...
 31843 kmailCALL  exit(0)   <-- 31843 calls exit and becomes zombie
(determined by ps later)
...
then 31844 closes more file descriptors
...
 31844 kmailCALL  open(0x80c701043,0x2,0)  <-- 31844
executes gpg2
 31844 kmailNAMI  "/dev/null"
 31844 kmailRET   open 0
 31844 kmailCALL  dup2(0,0x2)
 31844 kmailRET   dup2 2
 31844 kmailCALL  execve(0x86b49e3e0,0x86b4613c0,0x81b4e2600)
 31844 kmailNAMI  "/usr/local/bin/gpg2"
 31844 kmailNAMI  "/libexec/ld-elf.so.1"
 31844 gpg2 RET   execve 0
...
then gpg2 does its job
...
 31844 gpg2 CALL  exit(0)  <-- gpg2 exits

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300936] New: crash in something related to akonadi

2012-05-31 Thread Han Holl
https://bugs.kde.org/show_bug.cgi?id=300936

Bug ID: 300936
  Severity: crash
   Version: 4.8
  Priority: NOR
CC: kdepim-bugs@kde.org, vkra...@kde.org
  Assignee: er...@kde.org
   Summary: crash in something related to akonadi
Classification: Unclassified
OS: Linux
  Reporter: han.h...@pobox.com
  Hardware: Fedora RPMs
Status: UNCONFIRMED
 Component: IMAP resource
   Product: Akonadi

Application: akonadi_imap_resource (4.8)
KDE Platform Version: 4.8.3 (4.8.3)
Qt Version: 4.8.1
Operating System: Linux 3.3.7-1.fc16.x86_64 x86_64
Distribution: "Fedora release 17 (Beefy Miracle)"

-- Information about the crash:
Just upgraded to fedora 17

The crash can be reproduced every time.

-- Backtrace:
Application: IMAP Account 2 of type IMAP E-Mail Server (akonadi_imap_resource),
signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
82T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)
[Current thread is 1 (Thread 0x7f331a0bd880 (LWP 540))]

Thread 2 (Thread 0x7f32fe125700 (LWP 20608)):
#0  0x7f331516eeef in __GI___poll (fds=, nfds=, timeout=) at ../sysdeps/unix/sysv/linux/poll.c:87
#1  0x7f3313eef984 in g_main_context_poll (n_fds=1, fds=0x7f32f4004710,
timeout=-1, context=0x7f32f4006010, priority=) at gmain.c:3417
#2  g_main_context_iterate (context=context@entry=0x7f32f4006010,
block=block@entry=1, dispatch=dispatch@entry=1, self=) at gmain.c:3118
#3  0x7f3313eefaa4 in g_main_context_iteration (context=0x7f32f4006010,
may_block=1) at gmain.c:3184
#4  0x7f33195069e6 in QEventDispatcherGlib::processEvents
(this=0x7f32f4002ea0, flags=...) at kernel/qeventdispatcher_glib.cpp:426
#5  0x7f33194d793f in QEventLoop::processEvents
(this=this@entry=0x7f32fe124d00, flags=...) at kernel/qeventloop.cpp:149
#6  0x7f33194d7bc8 in QEventLoop::exec (this=0x7f32fe124d00, flags=...) at
kernel/qeventloop.cpp:204
#7  0x7f33193db5a0 in QThread::exec (this=) at
thread/qthread.cpp:501
#8  0x7f3317f396b9 in KIMAP::SessionThread::run (this=0x1323b120) at
/usr/src/debug/kdepimlibs-4.8.3/kimap/sessionthread.cpp:181
#9  0x7f33193de53b in QThreadPrivate::start (arg=0x1323b120) at
thread/qthread_unix.cpp:298
#10 0x7f331914ed14 in start_thread (arg=0x7f32fe125700) at
pthread_create.c:309
#11 0x7f331517799d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 1 (Thread 0x7f331a0bd880 (LWP 540)):
[KCrash Handler]
#6  QEventDispatcherGlib::wakeUp (this=0x7f32f4000ce0) at
kernel/qeventdispatcher_glib.cpp:579
#7  0x7f33194dbeea in QCoreApplication::postEvent (receiver=0x1322be00,
event=0x1322bb60, priority=) at kernel/qcoreapplication.cpp:1322
#8  0x7f33194e08e5 in QMetaMethod::invoke (this=this@entry=0x78e97610,
object=object@entry=0x1322be00, connectionType=320951760,
connectionType@entry=Qt::AutoConnection, returnValue=..., val0=..., val1=...,
val2=..., val3=..., val4=..., val5=..., val6=..., val7=..., val8=..., val9=...)
at kernel/qmetaobject.cpp:1703
#9  0x7f33194e2aec in QMetaObject::invokeMethod (obj=0x1322be00,
member=, type=Qt::AutoConnection, ret=..., val0=..., val1=...,
val2=..., val3=..., val4=..., val5=..., val6=..., val7=..., val8=..., val9=...)
at kernel/qmetaobject.cpp:1179
#10 0x7f3317f39fd2 in invokeMethod (val9=..., val8=..., val7=..., val6=...,
val5=..., val4=..., val3=..., val2=..., val1=..., val0=...,
member=0x7f3317f56f96 "quit", obj=0x1322be00) at
/usr/include/QtCore/qobjectdefs.h:434
#11 KIMAP::SessionThread::~SessionThread (this=0x1322be00, __in_chrg=) at /usr/src/debug/kdepimlibs-4.8.3/kimap/sessionthread.cpp:51
#12 0x7f3317f3a2b9 in KIMAP::SessionThread::~SessionThread
(this=0x1322be00, __in_chrg=) at
/usr/src/debug/kdepimlibs-4.8.3/kimap/sessionthread.cpp:58
#13 0x7f3317f33912 in KIMAP::Session::~Session (this=0x13234e40,
__in_chrg=) at
/usr/src/debug/kdepimlibs-4.8.3/kimap/session.cpp:68
#14 0x7f3317f33949 in KIMAP::Session::~Session (this=0x13234e40,
__in_chrg=) at
/usr/src/debug/kdepimlibs-4.8.3/kimap/session.cpp:69
#15 0x7f33194ed1f8 in QObject::event (this=0x13234e40, e=)
at kernel/qobject.cpp:1176
#16 0x7f331867047c in QApplicationPrivate::notify_helper
(this=this@entry=0xbd9ae0, receiver=receiver@entry=0x13234e40,
e=e@entry=0x13241c00) at kernel/qapplication.cpp:4554
#17 0x7f33186749aa in QApplication::notify (this=0x78e98410,
receiver=0x13234e40, e=0x13241c00) at kernel/qapplication.cpp:4415
#18 0x7f33165b5a56 in KApplication::notify (this=0x78e98410,
receiver=0x13234e40, event=0x13241c00) at
/usr/src/debug/kdelibs-4.8.3/kdeui/kernel/kapplication.cpp:311
#19 0x7f33194d893e in QCoreApplication::notifyInternal
(this=0x78e98410, receiver=receiver@entry=0x13234e40,
event=event@entry=0x13241c00) at kernel/qcoreapplication.cpp:876
#20 0x7f33194dc3e1 in sendEvent (event=0x13241c00, receiver=0x13234e40) at
kernel/qcoreapplicatio

[Bug 300933] Kmail2 asks for the imap password on every boot

2012-05-31 Thread Dimitrios Glentadakis
https://bugs.kde.org/show_bug.cgi?id=300933

--- Comment #2 from Dimitrios Glentadakis  ---
Created attachment 71464
  --> https://bugs.kde.org/attachment.cgi?id=71464&action=edit
The dialog with the imap settings

We can see that the password is already assigned; and it does nt exist a
check-box with the choice "Save password" as it was in kmail1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300933] Kmail2 asks for the imap password on every boot

2012-05-31 Thread Dimitrios Glentadakis
https://bugs.kde.org/show_bug.cgi?id=300933

--- Comment #1 from Dimitrios Glentadakis  ---
Created attachment 71463
  --> https://bugs.kde.org/attachment.cgi?id=71463&action=edit
The dialog which asks me the password (greek)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300933] New: Kmail2 asks for the imap password on every boot

2012-05-31 Thread Dimitrios Glentadakis
https://bugs.kde.org/show_bug.cgi?id=300933

Bug ID: 300933
  Severity: normal
   URL: http://forum.kde.org/viewtopic.php?f=215&t=102365
   Version: 4.8.2
  Priority: NOR
  Assignee: kdepim-bugs@kde.org
   Summary: Kmail2 asks for the imap password on every boot
Classification: Unclassified
OS: Linux
  Reporter: dgl...@gmail.com
  Hardware: Mageia RPMs
Status: UNCONFIRMED
 Component: general
   Product: kmail2

After upgrading to KDE 4.8.2 from 4.6.5 kwallet asked me to be opened for the
password of kmail. I answered 'Always' but every time after a boot it asked me
the password. So, i choosed to keep the password localy and unsecurily. But
after a reboot i am still asked for the password. impossible to make kmail2
remember it.

Reproducible: Always

Steps to Reproduce:
1. Boot the system.
2. kmail2 asks for a password
3.
Actual Results:  
Ask for the imap password

Expected Results:  
Dont ask any more the password

If i close kmail before shutdown the system, after reboot i launch the kmail2
and then it does nt ask me for the password. May be it starts very fast before
akonadi ?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300047] CardDav not syncing, no errors, while CalDav is ok for the same resource

2012-05-31 Thread Grégory Oestreicher
https://bugs.kde.org/show_bug.cgi?id=300047

Grégory Oestreicher  changed:

   What|Removed |Added

 CC||i...@envirology.co.nz

--- Comment #8 from Grégory Oestreicher  ---
*** Bug 300915 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300915] REPORT request sent contains no filter

2012-05-31 Thread Grégory Oestreicher
https://bugs.kde.org/show_bug.cgi?id=300915

Grégory Oestreicher  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||g...@kamago.net
 Resolution|--- |DUPLICATE

--- Comment #1 from Grégory Oestreicher  ---


*** This bug has been marked as a duplicate of bug 300047 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 293098] KAddressbook/Akonadi stores CATEGORIES escaped the wrong way

2012-05-31 Thread Ingo Ratsdorf
https://bugs.kde.org/show_bug.cgi?id=293098

Ingo Ratsdorf  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |UPSTREAM

--- Comment #4 from Ingo Ratsdorf  ---
After upgrading to 4.8.3, the bug seems to be resolved.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 293098] KAddressbook/Akonadi stores CATEGORIES escaped the wrong way

2012-05-31 Thread Ingo Ratsdorf
https://bugs.kde.org/show_bug.cgi?id=293098

--- Comment #3 from Ingo Ratsdorf  ---
This is a bug in the underlaying iCal library. Anybody working on this one?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300916] New: Reply to a mailing list message sends reply to the list unconditionally instead of the sender

2012-05-31 Thread nine
https://bugs.kde.org/show_bug.cgi?id=300916

Bug ID: 300916
  Severity: critical
   Version: unspecified
  Priority: NOR
  Assignee: kdepim-bugs@kde.org
   Summary: Reply to a mailing list message sends reply to the
list unconditionally instead of the sender
Classification: Unclassified
OS: Linux
  Reporter: n...@detonation.org
  Hardware: openSUSE RPMs
Status: UNCONFIRMED
 Component: commands and actions
   Product: kmail2

Today it happened again, that I replied to a message on our internal company
mailing list and the answer went to the whole list (all employees) instead of
only the single intended recipient. We use mailman as mailing list manager and
configured it explicitely to have answers go to the sender only.

In the best case this causes great embarassment and lost productivity for the
company. In the worst case this causes sensitive information or private
communication to be leaked to a whole mailing list. Therefore this should be
considered a security problem (which is the reason for choosing a severity of
"Critical").

Reproducible: Always

Steps to Reproduce:
1. open an email that went to a mailing list
2. hit reply

Actual Results:  
The mailing list's address is in the To field instead of the sender's.

Expected Results:  
The sender's email address is in the To field.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300915] New: REPORT request sent contains no filter

2012-05-31 Thread Ingo Ratsdorf
https://bugs.kde.org/show_bug.cgi?id=300915

Bug ID: 300915
  Severity: critical
   Version: unspecified
  Priority: NOR
  Assignee: kdepim-bugs@kde.org
   Summary: REPORT request sent contains no filter
Classification: Unclassified
OS: Linux
  Reporter: i...@envirology.co.nz
  Hardware: Ubuntu Packages
Status: UNCONFIRMED
 Component: DAV Resource
   Product: Akonadi

The groupdav resource issues a REPORT query on CardDAV that does not contain a
filter element:

107474.868876192.168.1.67192.168.1.70HTTP/XML302REPORT
/addressbooks/c9c6be80dbe8be333971617d87de7669e19443c0/24/ HTTP/1.1









SabreDAV replies with 400 BAD EQUEST

107875.213334192.168.1.70192.168.1.67HTTP/XML865   
HTTP/1.1 400 Bad request

http://sabredav.org/ns";>
Sabre_DAV_Exception_BadRequest
Only one filter element is allowed
1.5.4


Reproducible: Always

Steps to Reproduce:
Query Items in Akonadi
Actual Results:  
Receive 400 BAD REQUEST from Server

Expected Results:  
Retrieved VCards

According to CardDAV RFC, a filter MUST be specified as part of the query:
(http://tools.ietf.org/html/rfc6352#section-10.3)

10.3. CARDDAV:addressbook-query XML Element
   Name:  addressbook-query
   Namespace:  urn:ietf:params:xml:ns:carddav
   Purpose:  Defines a report for querying address book data
   Description:  See Section 8.6.
   Definition:
   

Please note that "filter" and "limit" are NOT optional.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 293893] Useless error messages

2012-05-31 Thread Nick Leverton
https://bugs.kde.org/show_bug.cgi?id=293893

--- Comment #5 from Nick Leverton  ---
By coincidence I just had this issue again whilst responding.  It may be
related to the caldav link perhaps rather than dimap, since they both go to the
same server.

After an overnight interruption to the connection, I have closed and exited
kontact (not even running in system tray), and run "akonadictl stop", but the
flood of "Unknown error: unable to list item parts" is *still* going on :-(

I restarted akonadi using systemsettings "PIM framework", and both korganizer
and plasma-desktop have now put up "Fetch job error" dialogue boxes with the
same "unable to list item parts" message.

What can be producing it, how can I help you debug this issue ?  The cpu is
being slugged to 100%, and the continuing popups severely interrupt my work.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 266451] "Birthdays & Anniversaries" showing duplicate entries.

2012-05-31 Thread Martin Tlustos
https://bugs.kde.org/show_bug.cgi?id=266451

Martin Tlustos  changed:

   What|Removed |Added

 CC||martin.tlus...@gmail.com

--- Comment #3 from Martin Tlustos  ---
confirmed on Kubuntu 12.04 with kde 4.8.3

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 293893] Useless error messages

2012-05-31 Thread Nick Leverton
https://bugs.kde.org/show_bug.cgi?id=293893

--- Comment #4 from Nick Leverton  ---
Currently on 4.8.3, and have been generally tracking KDE stable via Ubuntu kde
PPA.
We only got the (ptui) exchange server recently so I can't go back much before
4.7.2 but this issue is certainly current.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 259813] reading mails in unread mode instantly disappears from list

2012-05-31 Thread Florian Fainelli
https://bugs.kde.org/show_bug.cgi?id=259813

--- Comment #10 from Florian Fainelli  ---
Ping! What's the supposed workflow when reading emails with this bug? As soon
as I read a mail, it disappears, along with the corresponding thread, so I have
to manually search back for the thread I was reading, not convenient.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 247229] gpg key search allways empty result

2012-05-31 Thread Martin Albrecht
https://bugs.kde.org/show_bug.cgi?id=247229

--- Comment #8 from Martin Albrecht  ---
It seems the bug is back. It is still KMail 1.13.7 in Debian testing. Akonadi
was recently updated to 1.7.2 from 1.6.2.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 300908] New: Kontact crashed while deleting subfolders

2012-05-31 Thread sandhaus
https://bugs.kde.org/show_bug.cgi?id=300908

Bug ID: 300908
  Severity: crash
   Version: 4.8.2
  Priority: NOR
  Assignee: kdepim-bugs@kde.org
   Summary: Kontact crashed while deleting subfolders
Classification: Unclassified
OS: Linux
  Reporter: sandh...@mus.awo-ol.de
  Hardware: Ubuntu Packages
Status: UNCONFIRMED
 Component: general
   Product: kontact

Application: kontact (4.8.2)
KDE Platform Version: 4.8.2 (4.8.2)
Qt Version: 4.8.1
Operating System: Linux 3.2.0-24-generic x86_64
Distribution: Ubuntu 12.04 LTS

-- Information about the crash:
- What I was doing when the application crashed:

to purge my folders i deleted mails and if a subfolder was empty i deleted this
folder.
kontact crashed while deleting an empty subfolder.

-- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f8f117007c0 (LWP 3025))]

Thread 4 (Thread 0x7f8ef50bf700 (LWP 3034)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:162
#1  0x7f8f0df00dec in ?? () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#2  0x7f8f0df00f19 in ?? () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#3  0x7f8f093c7e9a in start_thread (arg=0x7f8ef50bf700) at
pthread_create.c:308
#4  0x7f8f0ec324bd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#5  0x in ?? ()

Thread 3 (Thread 0x7f8ef47a6700 (LWP 3035)):
#0  0x7f8f0ec250bd in read () at ../sysdeps/unix/syscall-template.S:82
#1  0x7f8f08f3588f in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f8f08efaabd in g_main_context_check () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f8f08efaf96 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7f8f08efb124 in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7f8f0f3a7426 in QEventDispatcherGlib::processEvents
(this=0x7f8eec0008c0, flags=...) at kernel/qeventdispatcher_glib.cpp:426
#6  0x7f8f0f376c82 in QEventLoop::processEvents (this=,
flags=...) at kernel/qeventloop.cpp:149
#7  0x7f8f0f376ed7 in QEventLoop::exec (this=0x7f8ef47a5dc0, flags=...) at
kernel/qeventloop.cpp:204
#8  0x7f8f0f275fa7 in QThread::exec (this=) at
thread/qthread.cpp:501
#9  0x7f8f0f278fcb in QThreadPrivate::start (arg=0x1256d10) at
thread/qthread_unix.cpp:298
#10 0x7f8f093c7e9a in start_thread (arg=0x7f8ef47a6700) at
pthread_create.c:308
#11 0x7f8f0ec324bd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#12 0x in ?? ()

Thread 2 (Thread 0x7f8ea719c700 (LWP 3463)):
#0  0x7f8f0ec26b03 in __GI___poll (fds=, nfds=, timeout=) at ../sysdeps/unix/sysv/linux/poll.c:87
#1  0x7f8f08efaff6 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f8f08efb124 in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f8f0f3a7426 in QEventDispatcherGlib::processEvents
(this=0x7f8ea0003b30, flags=...) at kernel/qeventdispatcher_glib.cpp:426
#4  0x7f8f0f376c82 in QEventLoop::processEvents (this=,
flags=...) at kernel/qeventloop.cpp:149
#5  0x7f8f0f376ed7 in QEventLoop::exec (this=0x7f8ea719bd90, flags=...) at
kernel/qeventloop.cpp:204
#6  0x7f8f0f275fa7 in QThread::exec (this=) at
thread/qthread.cpp:501
#7  0x7f8f0f3569ff in QInotifyFileSystemWatcherEngine::run (this=0x1697cf0)
at io/qfilesystemwatcher_inotify.cpp:248
#8  0x7f8f0f278fcb in QThreadPrivate::start (arg=0x1697cf0) at
thread/qthread_unix.cpp:298
#9  0x7f8f093c7e9a in start_thread (arg=0x7f8ea719c700) at
pthread_create.c:308
#10 0x7f8f0ec324bd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#11 0x in ?? ()

Thread 1 (Thread 0x7f8f117007c0 (LWP 3025)):
[KCrash Handler]
#6  QModelIndex (other=..., this=0x7fffc48b50c0) at
../../include/QtCore/../../src/corelib/kernel/qabstractitemmodel.h:65
#7  QSortFilterProxyModel::parent (this=0x15ce9e0, child=...) at
itemviews/qsortfilterproxymodel.cpp:1659
#8  0x7f8f10a6129a in parent (this=0x7fffc48b5110) at
/usr/include/qt4/QtCore/qabstractitemmodel.h:393
#9  KIdentityProxyModel::parent (this=0x1744340, child=...) at
../../kdeui/itemviews/kidentityproxymodel.cpp:358
#10 0x7f8f10a6129a in parent (this=0x7fffc48b5170) at
/usr/include/qt4/QtCore/qabstractitemmodel.h:393
#11 KIdentityProxyModel::parent (this=0x1744e30, child=...) at
../../kdeui/itemviews/kidentityproxymodel.cpp:358
#12 0x7f8f0f36e5d3 in parent (this=0x7fffc48b51e0) at
kernel/qabstractitemmodel.h:393
#13 QAbstractItemModelPrivate::rowsAboutToBeRemoved (this=0x1744e60,
parent=..., first=0, last=0) at kernel/qabstractitemmodel.cpp:726
#14 0x7f8f0f371d48 in QAbstractItemModel::beginRemoveRows (this=, parent=..., first=0, last=) at
kernel/qabstractitemmodel.cpp:2471
#15