[kmail2] [Bug 449826] Kmail crashes the moment an encrypted email is selected

2022-02-10 Thread Timo Wilken
https://bugs.kde.org/show_bug.cgi?id=449826

Timo Wilken  changed:

   What|Removed |Added

 CC||kdeb...@twilken.net

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 449898] "setFcc: collection invalid" after clicking on mail address in e-mail message body

2022-02-10 Thread Timo Wilken
https://bugs.kde.org/show_bug.cgi?id=449898

Timo Wilken  changed:

   What|Removed |Added

 CC||kdeb...@twilken.net

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 449891] kmail crashes on startup

2022-02-10 Thread Timo Wilken
https://bugs.kde.org/show_bug.cgi?id=449891

Timo Wilken  changed:

   What|Removed |Added

 CC||kdeb...@twilken.net

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 449927] New: kmail crashes on startup after crashing when switching folders

2022-02-10 Thread Timo Wilken
https://bugs.kde.org/show_bug.cgi?id=449927

Bug ID: 449927
   Summary: kmail crashes on startup after crashing when switching
folders
   Product: kmail2
   Version: 5.19.2
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: kdepim-bugs@kde.org
  Reporter: kdeb...@twilken.net
  Target Milestone: ---

Created attachment 146528
  --> https://bugs.kde.org/attachment.cgi?id=146528&action=edit
kmail startup and debug log

SUMMARY
After looking at emails and switching folders a few times, when switching back
to an inbox, kontact crashes.

I'm not sure, but the crash may have happened when switching to a folder where
the first message was signed using an RSA4096 GPG key, of which I have the
public key stored in KGPG.

Subsequently trying to reopen kontact or kmail crashes with a segfault (see
attached log).


STEPS TO REPRODUCE
1. open kontact/kmail and switch folders a few times, possibly opening a
GPG-signed message
2. kontact/kmail crashes
3. try to reopen kmail
4. kmail keeps segfaulting

OBSERVED RESULT
kmail crashes upon startup, without showing a window. See attached log for
details.

EXPECTED RESULT
kmail starts normally.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Kernel 5.16.8-arch1-1
(available in About System)
KDE Plasma Version: 5.24.0
KDE Frameworks Version: 5.90.0
Qt Version: 5.15.2

ADDITIONAL INFORMATION

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 435516] New: PGP PUBLIC KEY BLOCK silently removed from view

2021-04-08 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=435516

Bug ID: 435516
   Summary: PGP PUBLIC KEY BLOCK silently removed from view
   Product: kmail2
   Version: 5.15.3
  Platform: Debian testing
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: message list
  Assignee: kdepim-bugs@kde.org
  Reporter: t...@tiwe.de
  Target Milestone: ---

Created attachment 137436
  --> https://bugs.kde.org/attachment.cgi?id=137436&action=edit
example mail

SUMMARY

PGP PUBLIC KEY BLOCK is silently removed from mail view.
When viewing a text-only mail I don't expect anything to be removed.
What else is removed from mail bodies? What can be hidden from a recipient
using kmail, even in signed mails?

STEPS TO REPRODUCE
1. view example mail (attached)

OBSERVED RESULT

no public key displayed, neither inline nor as an attachment

EXPECTED RESULT

public key block shown inline ready to be copied

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 
KDE Frameworks Version: 5.78.0
Qt Version: 5.15.2

ADDITIONAL INFORMATION

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 431218] mail viewer loads external fonts even with external refs disabled

2021-02-04 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=431218

--- Comment #5 from Timo Weingärtner  ---
Why should an email be able to load images from my home directory?

What is the use case for loading images from file:// ?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 431218] mail viewer loads external fonts even with external refs disabled

2021-02-03 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=431218

--- Comment #3 from Timo Weingärtner  ---
I sent you a test case in private mail.

When reading your patch and the surrounding code it looks like only some
(images, now also fonts) request types are blacklisted. What about external
style sheets or other types that might grow in HTML-land? Are there any
external requests you think should be allowed?

Regarding URL schemes: why is file:// allowed? I could think of some social
engineering attacks that might work by including files from the victims
computer. I would read "external request" as external to the e-mail in
question.

To me the function could be as simple as:

8<8<
bool
LoadExternalReferencesUrlInterceptor::interceptRequest(QWebEngineUrlRequestInfo
&info)
{
if (mAllowLoadExternalReference) {
return false;
}

const QString scheme = info.requestUrl().scheme();
if (scheme == QLatin1String("data")
|| scheme == QLatin1String("cid")) {
return false;
}

return true;
}
8<8<

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 431218] New: mail viewer loads external fonts even with external refs disabled

2021-01-06 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=431218

Bug ID: 431218
   Summary: mail viewer loads external fonts even with external
refs disabled
   Product: kmail2
   Version: 5.15.3
  Platform: Debian testing
OS: Linux
Status: REPORTED
  Severity: grave
  Priority: NOR
 Component: UI
  Assignee: kdepim-bugs@kde.org
  Reporter: t...@tiwe.de
  Target Milestone: ---

SUMMARY

not sure about component
severity: grave for security/privacy/tracking problem

STEPS TO REPRODUCE
1. view HTML mail with 

[kmail2] [Bug 427091] Kmail gpg bad signature if From header contains non-ascii characters

2020-12-08 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=427091

Timo Weingärtner  changed:

   What|Removed |Added

 CC||t...@tiwe.de

--- Comment #3 from Timo Weingärtner  ---
In my config 8859-1 is not in the list, but kmail changes encondig to it
anyways.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kontact] [Bug 421154] Kontact summary page does not update

2020-05-07 Thread Timo Wilken
https://bugs.kde.org/show_bug.cgi?id=421154

Timo Wilken  changed:

   What|Removed |Added

 CC||timo.21.wilken+kdebug@gmail
   ||.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kontact] [Bug 421154] New: Kontact summary page does not update

2020-05-07 Thread Timo Wilken
https://bugs.kde.org/show_bug.cgi?id=421154

Bug ID: 421154
   Summary: Kontact summary page does not update
   Product: kontact
   Version: 5.14.0
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: summary
  Assignee: kdepim-bugs@kde.org
  Reporter: timo.21.wilken+kde...@gmail.com
  Target Milestone: ---

SUMMARY
The Kontact summary page does not update itself in time.

STEPS TO REPRODUCE
1. Add a calendar event scheduled e.g. 1h41m in the future to Kontact and
enable the Upcoming Events component on the summary page
2. Wait a few minutes, keeping the summary page open

OBSERVED RESULT
The summary page still says "in 1 hr 41 mins", not the correct, updated time.
Switching away (e.g. to the mail page) and back to the summary page displays
the correct time.

EXPECTED RESULT
The remaining time in the second column of the Upcoming Events item should
update every minute to remain correct.

SOFTWARE/OS VERSIONS
OS: Arch Linux (64-bit)
uname -a: Linux [HOSTNAME REDACTED] 5.4.38-1-lts #1 SMP Sat, 02 May 2020
19:12:10 + x86_64 GNU/Linux
KDE Plasma Version: 5.18.5
KDE Frameworks Version: 5.69.0
Qt Version: 5.14.2

ADDITIONAL INFORMATION

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 397825] [Wayland] Message viewer displays only a black rectangle when restoring from systray

2018-10-24 Thread Timo Kalliomäki
https://bugs.kde.org/show_bug.cgi?id=397825

Timo Kalliomäki  changed:

   What|Removed |Added

 CC||timok...@gmail.com

--- Comment #5 from Timo Kalliomäki  ---
Also present in 5.9.1 (18.08.1) under Debian Buster (Frameworks 5.49, Qt
5.11.2). Nothing is reported in wayland-session.org at the time of minimization
or restoring, but I’ve included the whole log from Kmail start to restoring
below. Any other logs that could be useful?

Using Wayland-EGL
KTranscript: Loaded property map:
/usr/share/locale/xx/LC_SCRIPTS/ki18n5/general.pmapc
KTranscript: Loaded module: /usr/share/locale/xx/LC_SCRIPTS/ki18n5/ki18n5.js
No text-to-speech plug-ins were found.
WebEngine compiled with X11 support, however qpa backend is not xcb. This may
fail.
[1024/130816.449340:WARNING:stack_trace_posix.cc(699)] Failed to open file:
/home/username/#1910 (deleted)
  Error: File or directory does not exist
"Interpolation {$[gen %1]} in {$[gen %1] &asetukset...} failed: Non-string
return value: undefined"
"Interpolation {$[gen %1]} in {$[gen %1] käyttö&ohj...} failed: Non-string
return value: undefined"
"Interpolation {$[elat %1]} in {&Tietoa $[yleisnimi_...} failed: Non-string
return value: undefined"
Using the 'xdg-shell-v6' shell integration
Registering ":1.98/StatusNotifierItem" to system tray
Registering ":1.98/StatusNotifierItem"
QQuickItem::stackAfter: Cannot stack
StatusNotifierItem_QMLTYPE_273(0x55a99d220fb0, parent=0x55a999504070,
geometry=0,0 0x0) after StatusNotifierItem_QMLTYPE_273(0x55a999e5c160), which
must be a sibling

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 360792] akonadi_davgroupware_resource crashes constandly

2017-02-06 Thread Timo
https://bugs.kde.org/show_bug.cgi?id=360792

Timo  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED

--- Comment #13 from Timo  ---
*** This bug has been confirmed by popular vote. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 360792] akonadi_davgroupware_resource crashes constandly

2017-02-06 Thread Timo
https://bugs.kde.org/show_bug.cgi?id=360792

Timo  changed:

   What|Removed |Added

 CC||sedrem...@gmail.com

--- Comment #12 from Timo  ---
Same thing happening on ubuntu 17.04 with KDE installed.

kontact --version = 5.2.3
akonadictl --version =  5.2.2
kmail --version = 5.2.3
plasmashell --version = 5.8.5

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 324443] REGRESSION: localhost: Cannot fetch item in offline mode

2016-10-02 Thread Timo Weingärtner via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=324443

Timo Weingärtner  changed:

   What|Removed |Added

Version|4.10.5  |5.2.3

--- Comment #2 from Timo Weingärtner  ---
This bug is still present in KMail 5.2.3. When disconnecting all NM connections
KMail shows:
---8<---8<---
Offline

KMail is currently in offline mode. Click here to go online . . .
---8<---8<---
but clicking "here" doesn't help.

Relying on NM to tell if a server is reachable is a heuristic and the heuristic
is wrong.
A better heuristic might be to run "ip route get $SERVER" which might incur a
DNS timeout if a hostname is used.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 327779] redirect overwrites To:

2013-11-18 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=327779

--- Comment #2 from Timo Weingärtner  ---
> ok ... what is the bug ?
> What is the problem ?
> What do you expect ?

I expect my MUA to follow the relevant RFC as it did before.

https://tools.ietf.org/html/rfc5322#section-3.6.6 says:
No other fields in the message are changed when resent fields are added.

-- 
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


[kmail2] [Bug 327779] New: redirect overwrites To:

2013-11-18 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=327779

Bug ID: 327779
   Summary: redirect overwrites To:
Classification: Unclassified
   Product: kmail2
   Version: 4.10.5
  Platform: Debian testing
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: commands and actions
  Assignee: kdepim-bugs@kde.org
  Reporter: t...@tiwe.de

when redirecting a mail, Redirect-To: is copied to To:

-- 
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


[kmail2] [Bug 324443] New: REGRESSION: localhost: Cannot fetch item in offline mode

2013-09-03 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=324443

Bug ID: 324443
   Summary: REGRESSION: localhost: Cannot fetch item in offline
mode
Classification: Unclassified
   Product: kmail2
   Version: 4.10.5
  Platform: Debian testing
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kdepim-bugs@kde.org
  Reporter: t...@tiwe.de

I use a local IMAP server for my mail for many reasons, one of them being the
ability to read my mail when I'm offline. Since the last upgrade kmail refuses
reading mails for no reason (ip r g ::1 shows a valid route). Preferring "Fake
Net" in the solid configuration does not help.

The non-alternatives are using a Maildir resource (no support for folder
structure) and disconnected mode (why duplicate all the data?). 

Reproducible: Always

Steps to Reproduce:
1. create an IMAP account for localhost
2. disconnect non-lo interfaces
3. find out that you can still use the IMAP server with other clients but not
with kmail


Expected Results:  
ability to read and manipulate mail

-- 
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


[kmail] [Bug 189799] Add "resent-*" headers to redirect e-mails

2013-09-03 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=189799

--- Comment #4 from Timo Weingärtner  ---
The envelope addresses for resent mails are OK in kmail2, but DKIM headers are
not removed. I haven't read the RFCs on that topic yet.

-- 
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


[kmail] [Bug 122955] In default Fancy Headers, display the Resent-To field just like Resent-From field

2013-09-03 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=122955

Timo Weingärtner  changed:

   What|Removed |Added

 CC||t...@tiwe.de

--- Comment #3 from Timo Weingärtner  ---
kmail2 (4.10.5) still doesn't show Resent-To: here.

-- 
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 189799] Add "resent-*" headers to redirect e-mails

2012-02-05 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=189799


Timo Weingärtner  changed:

   What|Removed |Added

 CC||t...@tiwe.de




--- Comment #1 from Timo Weingärtner   2012-02-05 23:38:45 ---
In kmail 1.13.7, Resent-* field are added, but it uses the old (non-Resent-*)
From: or Sender: for the MAIL FROM in the SMTP dialog, which causes the mail to
be rejected. (At least by my provider, which blocks Google envelope senders.)

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- 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 208846] Show 'redirectees' in redirected messages

2012-02-05 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=208846


Timo Weingärtner  changed:

   What|Removed |Added

 CC||t...@tiwe.de




--- Comment #1 from Timo Weingärtner   2012-02-05 23:32:24 ---
kmail 1.13.7 adds Resent-*: headers and displays the contents of the
Resent-From header behind the From: line with the "Fancy Headers" setting.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- 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 44699] can't encrypt with gpg if the receiver's key is not signed

2011-06-11 Thread Timo Weingärtner
https://bugs.kde.org/show_bug.cgi?id=44699


Timo Weingärtner  changed:

   What|Removed |Added

 CC||t...@tiwe.de




--- Comment #45 from Timo Weingärtner   2011-06-11 15:12:27 ---
It seems like the bug is fixed in 1.13.7 or some version before.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- 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 273696] New: Kmail crashes on startup

2011-05-19 Thread timo paukkio
https://bugs.kde.org/show_bug.cgi?id=273696

   Summary: Kmail crashes on startup
   Product: kmail2
   Version: unspecified
  Platform: Ubuntu Packages
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: timo.pauk...@milosan.fi


Application: kmail (1.13.6)
KDE Platform Version: 4.6.2 (4.6.2)
Qt Version: 4.7.2
Operating System: Linux 2.6.38-8-generic x86_64
Distribution: Ubuntu 11.04

-- Information about the crash:
Kmail crashes after password prompt, tried hitting escape, got it to work
couple of times, now nothing.

The crash can be reproduced every time.

-- Backtrace:
Application: KMail (kmail), signal: Segmentation fault
[Current thread is 1 (Thread 0x7fb7c584d840 (LWP 2420))]

Thread 5 (Thread 0x7fb7a772c700 (LWP 2422)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:216
#1  0x7fb7b972d392 in ?? () from
/usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0
#2  0x7fb7ba67f2af in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7fb7ba67fca9 in g_async_queue_timed_pop () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7fb7ba6d3a5a in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7fb7ba6d13e4 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#6  0x7fb7c035ed8c in start_thread (arg=0x7fb7a772c700) at
pthread_create.c:304
#7  0x7fb7c27af04d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#8  0x in ?? ()

Thread 4 (Thread 0x7fb7a6da0700 (LWP 2423)):
#0  __libc_enable_asynccancel () at
../nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S:66
#1  0x7fb7c27a1ee8 in __poll (fds=, nfds=, timeout=) at
../sysdeps/unix/sysv/linux/poll.c:85
#2  0x7fb7ba6aa104 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7fb7ba6aa9f2 in g_main_loop_run () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7fb7b18dbc44 in ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
#5  0x7fb7ba6d13e4 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#6  0x7fb7c035ed8c in start_thread (arg=0x7fb7a6da0700) at
pthread_create.c:304
#7  0x7fb7c27af04d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#8  0x in ?? ()

Thread 3 (Thread 0x7fb7a0604700 (LWP 2425)):
#0  0x7fb7ba6a9102 in g_main_context_prepare () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#1  0x7fb7ba6a9f9d in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7fb7ba6aa639 in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7fb7c30ff446 in QEventDispatcherGlib::processEvents (this=0x273a5f0,
flags=) at kernel/qeventdispatcher_glib.cpp:424
#4  0x7fb7c30d3882 in QEventLoop::processEvents (this=, flags=...) at kernel/qeventloop.cpp:149
#5  0x7fb7c30d3abc in QEventLoop::exec (this=0x7fb7a0603d10, flags=...) at
kernel/qeventloop.cpp:201
#6  0x7fb7c2fea924 in QThread::exec (this=) at
thread/qthread.cpp:492
#7  0x7fb7c30b5c2f in QInotifyFileSystemWatcherEngine::run (this=0x25a7240)
at io/qfilesystemwatcher_inotify.cpp:248
#8  0x7fb7c2fed175 in QThreadPrivate::start (arg=0x25a7240) at
thread/qthread_unix.cpp:320
#9  0x7fb7c035ed8c in start_thread (arg=0x7fb7a0604700) at
pthread_create.c:304
#10 0x7fb7c27af04d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#11 0x in ?? ()

Thread 2 (Thread 0x7fb79fe03700 (LWP 2426)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:216
#1  0x7fb7c2fed79e in wait (this=, mutex=0x270af00,
time=3) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=, mutex=0x270af00,
time=3) at thread/qwaitcondition_unix.cpp:160
#3  0x7fb7c2fe2218 in QThreadPoolThread::run (this=0x254a250) at
concurrent/qthreadpool.cpp:140
#4  0x7fb7c2fed175 in QThreadPrivate::start (arg=0x254a250) at
thread/qthread_unix.cpp:320
#5  0x7fb7c035ed8c in start_thread (arg=0x7fb79fe03700) at
pthread_create.c:304
#6  0x7fb7c27af04d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#7  0x in ?? ()

Thread 1 (Thread 0x7fb7c584d840 (LWP 2420)):
[KCrash Handler]
#6  QMetaObject::cast (this=0x7fb7c40980e0, obj=0x100d414002c) at
kernel/qmetaobject.cpp:266
#7  0x7fb7c3b4c49a in qobject_cast (this=0x250f260,
item=0x250f2e0, expand=false) at
../../include/QtCore/../../src/corelib/kernel/qobject.h:366
#8  treeModel (this=0x250f260, item=0x250f2e0, expand=false) at
../../include/QtGui/private/../../../src/gui/itemviews/qtreewidget_p.h:222
#9  QTreeWidget::setItemExpanded (this=0x250f260, item=0x250f2e0, expand=false)
at itemviews/qtreewidget.cpp:3140
#10 0x7fb7c4201d79 in setExpanded (this=0x24a3d90) at
/usr/include/qt4/QtGui/qtreewidget.h:409
#11 KMail::FolderView::restoreItemStates (this=

[Bug 273012] New: kmail crashing on start up

2011-05-11 Thread timo paukkio
https://bugs.kde.org/show_bug.cgi?id=273012

   Summary: kmail crashing on start up
   Product: kmail2
   Version: unspecified
  Platform: Ubuntu Packages
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: timo.pauk...@milosan.fi


Application: kmail (1.13.6)
KDE Platform Version: 4.6.2 (4.6.2)
Qt Version: 4.7.2
Operating System: Linux 2.6.38-8-generic x86_64
Distribution: Ubuntu 11.04

-- Information about the crash:
when starting kmail I'll get the prompt to enter password. After typing in the
password kmail crashes.

The crash can be reproduced every time.

-- Backtrace:
Application: KMail (kmail), signal: Segmentation fault
[Current thread is 1 (Thread 0x7fbbe5a55840 (LWP 2678))]

Thread 5 (Thread 0x7fbbc7934700 (LWP 2680)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:216
#1  0x7fbbd9935392 in ?? () from
/usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0
#2  0x7fbbda8872af in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7fbbda887ca9 in g_async_queue_timed_pop () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7fbbda8dba5a in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7fbbda8d93e4 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#6  0x7fbbe0566d8c in start_thread (arg=0x7fbbc7934700) at
pthread_create.c:304
#7  0x7fbbe29b704d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#8  0x in ?? ()

Thread 4 (Thread 0x7fbbc53cc700 (LWP 2681)):
#0  0x7fbbda8b20ec in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#1  0x7fbbda8b29f2 in g_main_loop_run () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7fbbd1ae3c44 in ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
#3  0x7fbbda8d93e4 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7fbbe0566d8c in start_thread (arg=0x7fbbc53cc700) at
pthread_create.c:304
#5  0x7fbbe29b704d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#6  0x in ?? ()

Thread 3 (Thread 0x7fbbc080c700 (LWP 2683)):
#0  QTimerInfoList::timerWait (this=0x1240650, tm=...) at
kernel/qeventdispatcher_unix.cpp:455
#1  0x7fbbe3306c2c in timerSourcePrepareHelper (src=,
timeout=0x7fbbc080bb8c) at kernel/qeventdispatcher_glib.cpp:136
#2  0x7fbbe3306cd5 in timerSourcePrepare (source=,
timeout=) at kernel/qeventdispatcher_glib.cpp:169
#3  0x7fbbda8b10a2 in g_main_context_prepare () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7fbbda8b1f9d in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7fbbda8b2639 in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#6  0x7fbbe3307446 in QEventDispatcherGlib::processEvents (this=0x1244a70,
flags=) at kernel/qeventdispatcher_glib.cpp:424
#7  0x7fbbe32db882 in QEventLoop::processEvents (this=, flags=...) at kernel/qeventloop.cpp:149
#8  0x7fbbe32dbabc in QEventLoop::exec (this=0x7fbbc080bd10, flags=...) at
kernel/qeventloop.cpp:201
#9  0x7fbbe31f2924 in QThread::exec (this=) at
thread/qthread.cpp:492
#10 0x7fbbe32bdc2f in QInotifyFileSystemWatcherEngine::run (this=0x10e6900)
at io/qfilesystemwatcher_inotify.cpp:248
#11 0x7fbbe31f5175 in QThreadPrivate::start (arg=0x10e6900) at
thread/qthread_unix.cpp:320
#12 0x7fbbe0566d8c in start_thread (arg=0x7fbbc080c700) at
pthread_create.c:304
#13 0x7fbbe29b704d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#14 0x in ?? ()

Thread 2 (Thread 0x7fbbc000b700 (LWP 2684)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:216
#1  0x7fbbe31f579e in wait (this=, mutex=0x1246b90,
time=3) at thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=, mutex=0x1246b90,
time=3) at thread/qwaitcondition_unix.cpp:160
#3  0x7fbbe31ea218 in QThreadPoolThread::run (this=0x10be9d0) at
concurrent/qthreadpool.cpp:140
#4  0x7fbbe31f5175 in QThreadPrivate::start (arg=0x10be9d0) at
thread/qthread_unix.cpp:320
#5  0x7fbbe0566d8c in start_thread (arg=0x7fbbc000b700) at
pthread_create.c:304
#6  0x7fbbe29b704d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#7  0x in ?? ()

Thread 1 (Thread 0x7fbbe5a55840 (LWP 2678)):
[KCrash Handler]
#6  executePendingSort (this=0x0, item=0x1046f60, column=0) at
../../include/QtGui/private/../../../src/gui/itemviews/qtreewidget_p.h:205
#7  QTreeModel::index (this=0x0, item=0x1046f60, column=0) at
itemviews/qtreewidget.cpp:231
#8  0x7fbbe3d54732 in index (this=, item=0x1046f60,
select=) at
../../include/QtGui/private/../../../src/gui/itemviews/qtreewidget_p.h:224
#9  QTreeWidget::setItemSelected (this=, item=0x1046f60,
select=) at itemviews/qtreewidget.cpp:3032
#10 0x7fbbe4409ecf in setSelected (

[Bug 67504] IMAP IDLE support for KMail

2011-03-20 Thread Timo Nentwig
https://bugs.kde.org/show_bug.cgi?id=67504


Timo Nentwig  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED
 Resolution|UPSTREAM|WONTFIX




--- Comment #49 from Timo Nentwig   2011-03-20 13:29:20 ---
As the reporter I'm getting all these updates on this ridiculous issues for
years spamming my inbox...

Guys, just do it or let it be. But stop babbling about it for decades!

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- 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 67504] IMAP IDLE support for KMail (over 7 years in the making, over 3.5k votes, reporter switched to xfce years ago)

2011-03-19 Thread Timo Nentwig
https://bugs.kde.org/show_bug.cgi?id=67504


Timo Nentwig  changed:

   What|Removed |Added

Summary|IMAP IDLE support for KMail |IMAP IDLE support for KMail
   |(over 7 years in the|(over 7 years in the
   |making, over 3.5k votes,|making, over 3.5k votes,
   |open source works!) |reporter switched to xfce
   ||years ago)




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- 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 67504] IMAP IDLE support for KMail (over 7 years in the making, over 3.5k votes, open source works!)

2011-03-19 Thread Timo Nentwig
https://bugs.kde.org/show_bug.cgi?id=67504


Timo Nentwig  changed:

   What|Removed |Added

Summary|IMAP IDLE support for KMail |IMAP IDLE support for KMail
   ||(over 7 years in the
   ||making, over 3.5k votes,
   ||open source works!)




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- 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 210526] Not all data is shown in the details view Not all data is shown in the details view

2009-10-14 Thread Timo
https://bugs.kde.org/show_bug.cgi?id=210526





--- Comment #1 from Timo   2009-10-14 12:35:50 ---
I support this.

There is a lot of space available in the detail-window. 
The Information for the contacts should be visible without openeing the editing
window for several reasons:
convenience - Having all the information available without opening another
window is just faster
logic - the EDITING dialog should be used for making CHANGES to the
information, not viewing them.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- 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 207200] New: Kontact crached when closing it

2009-09-12 Thread Timo Paananen
https://bugs.kde.org/show_bug.cgi?id=207200

   Summary: Kontact crached when closing it
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: paanane...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.0 rc3
KDE Version: 4.3.1 (KDE 4.3.1)
Qt Version: 4.5.2
Operating System: Linux 2.6.28-14-generic i686
Distribution: Ubuntu 9.04

What I was doing when the application crashed:
I did add gmail account to kmail throught kontact and after syncing emails I
did close kontact from X-button and kontact did crash. Ktimer was also running
in background

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[Current thread is 0 (LWP 28912)]

Thread 2 (Thread 0xaadd4b90 (LWP 30014)):
#0  0xb7ff5430 in __kernel_vsyscall ()
#1  0xb517d0e5 in pthread_cond_wait@@GLIBC_2.3.2 () from
/lib/tls/i686/cmov/libpthread.so.0
#2  0xb599e2ed in pthread_cond_wait () from /lib/tls/i686/cmov/libc.so.6
#3  0xb5b82172 in QWaitCondition::wait () from /usr/lib/libQtCore.so.4
#4  0xb6a7eac2 in ?? () from /usr/lib/libQtNetwork.so.4
#5  0xb5b81132 in ?? () from /usr/lib/libQtCore.so.4
#6  0xb51794ff in start_thread () from /lib/tls/i686/cmov/libpthread.so.0
#7  0xb598f49e in clone () from /lib/tls/i686/cmov/libc.so.6

Thread 1 (Thread 0xb4890b30 (LWP 28912)):
[KCrash Handler]
#6  0xb5c75ba8 in QCoreApplication::notifyInternal () from
/usr/lib/libQtCore.so.4
#7  0xb618fe01 in QWidget::event () from /usr/lib/libQtGui.so.4
#8  0xb6138d3c in QApplicationPrivate::notify_helper () from
/usr/lib/libQtGui.so.4
#9  0xb6141122 in QApplication::notify () from /usr/lib/libQtGui.so.4
#10 0xb6d3285d in KApplication::notify () from /usr/lib/libkdeui.so.5
#11 0xb5c75bcb in QCoreApplication::notifyInternal () from
/usr/lib/libQtCore.so.4
#12 0xb618fe01 in QWidget::event () from /usr/lib/libQtGui.so.4
#13 0xb6540a53 in QFrame::event () from /usr/lib/libQtGui.so.4
#14 0xb65b0dd4 in QStackedWidget::event () from /usr/lib/libQtGui.so.4
#15 0xb6138d3c in QApplicationPrivate::notify_helper () from
/usr/lib/libQtGui.so.4
#16 0xb6141122 in QApplication::notify () from /usr/lib/libQtGui.so.4
#17 0xb6d3285d in KApplication::notify () from /usr/lib/libkdeui.so.5
#18 0xb5c75bcb in QCoreApplication::notifyInternal () from
/usr/lib/libQtCore.so.4
#19 0xb618fe01 in QWidget::event () from /usr/lib/libQtGui.so.4
#20 0xb65b0024 in QSplitter::event () from /usr/lib/libQtGui.so.4
#21 0xb6138d3c in QApplicationPrivate::notify_helper () from
/usr/lib/libQtGui.so.4
#22 0xb6141122 in QApplication::notify () from /usr/lib/libQtGui.so.4
#23 0xb6d3285d in KApplication::notify () from /usr/lib/libkdeui.so.5
#24 0xb5c75bcb in QCoreApplication::notifyInternal () from
/usr/lib/libQtCore.so.4
#25 0xb618fe01 in QWidget::event () from /usr/lib/libQtGui.so.4
#26 0xb6138d3c in QApplicationPrivate::notify_helper () from
/usr/lib/libQtGui.so.4
#27 0xb6141122 in QApplication::notify () from /usr/lib/libQtGui.so.4
#28 0xb6d3285d in KApplication::notify () from /usr/lib/libkdeui.so.5
#29 0xb5c75bcb in QCoreApplication::notifyInternal () from
/usr/lib/libQtCore.so.4
#30 0xb618fe01 in QWidget::event () from /usr/lib/libQtGui.so.4
#31 0xb655e197 in QMainWindow::event () from /usr/lib/libQtGui.so.4
#32 0xb6e172a7 in KMainWindow::event () from /usr/lib/libkdeui.so.5
#33 0xb6e5c82c in KXmlGuiWindow::event () from /usr/lib/libkdeui.so.5
#34 0xb6138d3c in QApplicationPrivate::notify_helper () from
/usr/lib/libQtGui.so.4
#35 0xb6141122 in QApplication::notify () from /usr/lib/libQtGui.so.4
#36 0xb6d3285d in KApplication::notify () from /usr/lib/libkdeui.so.5
#37 0xb5c75bcb in QCoreApplication::notifyInternal () from
/usr/lib/libQtCore.so.4
#38 0xb613f4a9 in QApplicationPrivate::enterModal () from
/usr/lib/libQtGui.so.4
#39 0xb6194fa5 in QWidgetPrivate::show_helper () from /usr/lib/libQtGui.so.4
#40 0xb61954b3 in QWidget::setVisible () from /usr/lib/libQtGui.so.4
#41 0xb662b5fd in QDialog::setVisible () from /usr/lib/libQtGui.so.4
#42 0xb662a6c6 in QDialog::exec () from /usr/lib/libQtGui.so.4
#43 0xb6cae2dc in KMessageBox::createKMessageBox () from /usr/lib/libkdeui.so.5
#44 0xb6caf5f1 in KMessageBox::createKMessageBox () from /usr/lib/libkdeui.so.5
#45 0xb6cb03e3 in KMessageBox::errorListWId () from /usr/lib/libkdeui.so.5
#46 0xb6cb0601 in KMessageBox::error () from /usr/lib/libkdeui.so.5
#47 0xb72970b9 in KABC::GuiErrorHandler::error () from /usr/lib/libkabc.so.4
#48 0xb7276b66 in KABC::AddressBook::error () from /usr/lib/libkabc.so.4
#49 0xab1d95c3 in KABC::ResourceNet::save () from /usr/lib/kde4/kabc_net.so
#50 0xb72767d1 in KABC::AddressBook::save () from /usr/lib/libkabc.so.4
#51 0xb72a72f8 in KABC::StdAddressBook::Private::saveAll () from
/usr/lib/libkabc.so.4
#52 0xb72a7583 in KABC::StdAddressBook::~StdAddress

[Bug 203680] New: Crash when looking at "summary"

2009-08-13 Thread Timo Denissen
https://bugs.kde.org/show_bug.cgi?id=203680

   Summary: Crash when looking at "summary"
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: timo.denis...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.0
KDE Version: 4.3.00 (KDE 4.3.0)
Qt Version: 4.5.2
Operating System: Linux 2.6.28-15-generic i686
Distribution: Ubuntu 9.04

What I was doing when the application crashed:
I start Kontact via the main menu. The first window is from Kmail and when I
click on summary the application crashes for an unknown reason.

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[Current thread is 0 (LWP 13221)]

Thread 2 (Thread 0xb01d0b90 (LWP 13226)):
#0  0xb80ca430 in __kernel_vsyscall ()
#1  0xb525a412 in pthread_cond_timedwait@@GLIBC_2.3.2 () from
/lib/tls/i686/cmov/libpthread.so.0
#2  0xb5a7b344 in pthread_cond_timedwait () from /lib/tls/i686/cmov/libc.so.6
#3  0xb5c5f14c in QWaitCondition::wait () from /usr/lib/libQtCore.so.4
#4  0xb5c53ac6 in ?? () from /usr/lib/libQtCore.so.4
#5  0xb5c5e132 in ?? () from /usr/lib/libQtCore.so.4
#6  0xb52564ff in start_thread () from /lib/tls/i686/cmov/libpthread.so.0
#7  0xb5a6c49e in clone () from /lib/tls/i686/cmov/libc.so.6

Thread 1 (Thread 0xb496eb30 (LWP 13221)):
[KCrash Handler]
#5  0xb5ca2efa in QString::operator== () from /usr/lib/libQtCore.so.4
#6  0xb746f2e7 in KCal::ResourceCached::clearChange () from
/usr/lib/libkcal.so.4
#7  0xb746f67b in KCal::ResourceCached::clearChange () from
/usr/lib/libkcal.so.4
#8  0xaaf60344 in KCal::ResourceRemote::slotSaveJobResult () from
/usr/lib/libkcal_resourceremote.so.4
#9  0xaaf60857 in KCal::ResourceRemote::qt_metacall () from
/usr/lib/libkcal_resourceremote.so.4
#10 0xb5d681b8 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#11 0xb5d68e42 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#12 0xb5f8ecb3 in KJob::result () from /usr/lib/libkdecore.so.5
#13 0xb5f8f159 in KJob::emitResult () from /usr/lib/libkdecore.so.5
#14 0xb708e6b8 in KIO::FileCopyJob::slotResult () from /usr/lib/libkio.so.5
#15 0xb708921f in KIO::FileCopyJob::qt_metacall () from /usr/lib/libkio.so.5
#16 0xb5d681b8 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#17 0xb5d68e42 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#18 0xb5f8ecb3 in KJob::result () from /usr/lib/libkdecore.so.5
#19 0xb5f8f159 in KJob::emitResult () from /usr/lib/libkdecore.so.5
#20 0xb7089c25 in KIO::SimpleJob::slotFinished () from /usr/lib/libkio.so.5
#21 0xb708a563 in KIO::TransferJob::slotFinished () from /usr/lib/libkio.so.5
#22 0xb7086b0b in KIO::TransferJob::qt_metacall () from /usr/lib/libkio.so.5
#23 0xb5d681b8 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#24 0xb5d68e42 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#25 0xb714fc17 in KIO::SlaveInterface::finished () from /usr/lib/libkio.so.5
#26 0xb7153957 in KIO::SlaveInterface::dispatch () from /usr/lib/libkio.so.5
#27 0xb71500f7 in KIO::SlaveInterface::dispatch () from /usr/lib/libkio.so.5
#28 0xb7141e6d in KIO::Slave::gotInput () from /usr/lib/libkio.so.5
#29 0xb7144303 in KIO::Slave::qt_metacall () from /usr/lib/libkio.so.5
#30 0xb5d681b8 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#31 0xb5d68e42 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#32 0xb704e1d7 in KIO::Connection::readyRead () from /usr/lib/libkio.so.5
#33 0xb704fb43 in ?? () from /usr/lib/libkio.so.5
#34 0xb704ff26 in KIO::Connection::qt_metacall () from /usr/lib/libkio.so.5
#35 0xb5d618cb in QMetaCallEvent::placeMetaCall () from /usr/lib/libQtCore.so.4
#36 0xb5d633b0 in QObject::event () from /usr/lib/libQtCore.so.4
#37 0xb6213d3c in QApplicationPrivate::notify_helper () from
/usr/lib/libQtGui.so.4
#38 0xb621c03e in QApplication::notify () from /usr/lib/libQtGui.so.4
#39 0xb6e0d5cd in KApplication::notify () from /usr/lib/libkdeui.so.5
#40 0xb5d52bcb in QCoreApplication::notifyInternal () from
/usr/lib/libQtCore.so.4
#41 0xb5d53825 in QCoreApplicationPrivate::sendPostedEvents () from
/usr/lib/libQtCore.so.4
#42 0xb5d53a1d in QCoreApplication::sendPostedEvents () from
/usr/lib/libQtCore.so.4
#43 0xb5d7e6af in ?? () from /usr/lib/libQtCore.so.4
#44 0xb4e24b88 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
#45 0xb4e280eb in ?? () from /usr/lib/libglib-2.0.so.0
#46 0xb4e28268 in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0
#47 0xb5d7e2f8 in QEventDispatcherGlib::processEvents () from
/usr/lib/libQtCore.so.4
#48 0xb62b5a75 in ?? () from /usr/lib/libQtGui.so.4
#49 0xb5d511fa in QEventLoop::processEvents () from /usr/lib/libQtCore.so.4
#50 0xb5d51642 in QEventLoop::exec () from /usr/lib/libQtCore.so.4
#51 0xb5d53ae9 in QCoreApplication::exec () from /usr/lib/libQtCo

[Bug 203679] New: After a click on "summary" Kontact crashed.

2009-08-13 Thread Timo Denissen
https://bugs.kde.org/show_bug.cgi?id=203679

   Summary: After a click on "summary" Kontact crashed.
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: timo.denis...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.0
KDE Version: 4.3.00 (KDE 4.3.0)
Qt Version: 4.5.2
Operating System: Linux 2.6.28-15-generic i686
Distribution: Ubuntu 9.04

What I was doing when the application crashed:
When looking at the prefences of "Summary" Kontact crashes. It's the first time
this happend.

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[KCrash Handler]
#5  0xb72233ec in KCal::IncidenceBase::uid () from /usr/lib/libkcal.so.4
#6  0xb72a9669 in KCal::ResourceCached::clearChange () from
/usr/lib/libkcal.so.4
#7  0xaa049344 in KCal::ResourceRemote::slotSaveJobResult () from
/usr/lib/libkcal_resourceremote.so.4
#8  0xaa049857 in KCal::ResourceRemote::qt_metacall () from
/usr/lib/libkcal_resourceremote.so.4
#9  0xb5ba21b8 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#10 0xb5ba2e42 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#11 0xb5dc8cb3 in KJob::result () from /usr/lib/libkdecore.so.5
#12 0xb5dc9159 in KJob::emitResult () from /usr/lib/libkdecore.so.5
#13 0xb6ec86b8 in KIO::FileCopyJob::slotResult () from /usr/lib/libkio.so.5
#14 0xb6ec321f in KIO::FileCopyJob::qt_metacall () from /usr/lib/libkio.so.5
#15 0xb5ba21b8 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#16 0xb5ba2e42 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#17 0xb5dc8cb3 in KJob::result () from /usr/lib/libkdecore.so.5
#18 0xb5dc9159 in KJob::emitResult () from /usr/lib/libkdecore.so.5
#19 0xb6ec3c25 in KIO::SimpleJob::slotFinished () from /usr/lib/libkio.so.5
#20 0xb6ec4563 in KIO::TransferJob::slotFinished () from /usr/lib/libkio.so.5
#21 0xb6ec0b0b in KIO::TransferJob::qt_metacall () from /usr/lib/libkio.so.5
#22 0xb5ba21b8 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#23 0xb5ba2e42 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#24 0xb6f89c17 in KIO::SlaveInterface::finished () from /usr/lib/libkio.so.5
#25 0xb6f8d957 in KIO::SlaveInterface::dispatch () from /usr/lib/libkio.so.5
#26 0xb6f8a0f7 in KIO::SlaveInterface::dispatch () from /usr/lib/libkio.so.5
#27 0xb6f7be6d in KIO::Slave::gotInput () from /usr/lib/libkio.so.5
#28 0xb6f7e303 in KIO::Slave::qt_metacall () from /usr/lib/libkio.so.5
#29 0xb5ba21b8 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#30 0xb5ba2e42 in QMetaObject::activate () from /usr/lib/libQtCore.so.4
#31 0xb6e881d7 in KIO::Connection::readyRead () from /usr/lib/libkio.so.5
#32 0xb6e89b43 in ?? () from /usr/lib/libkio.so.5
#33 0xb6e89f26 in KIO::Connection::qt_metacall () from /usr/lib/libkio.so.5
#34 0xb5b9b8cb in QMetaCallEvent::placeMetaCall () from /usr/lib/libQtCore.so.4
#35 0xb5b9d3b0 in QObject::event () from /usr/lib/libQtCore.so.4
#36 0xb604dd3c in QApplicationPrivate::notify_helper () from
/usr/lib/libQtGui.so.4
#37 0xb605603e in QApplication::notify () from /usr/lib/libQtGui.so.4
#38 0xb6c475cd in KApplication::notify () from /usr/lib/libkdeui.so.5
#39 0xb5b8cbcb in QCoreApplication::notifyInternal () from
/usr/lib/libQtCore.so.4
#40 0xb5b8d825 in QCoreApplicationPrivate::sendPostedEvents () from
/usr/lib/libQtCore.so.4
#41 0xb5b8da1d in QCoreApplication::sendPostedEvents () from
/usr/lib/libQtCore.so.4
#42 0xb5bb86af in ?? () from /usr/lib/libQtCore.so.4
#43 0xb4c5eb88 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
#44 0xb4c620eb in ?? () from /usr/lib/libglib-2.0.so.0
#45 0xb4c62268 in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0
#46 0xb5bb82f8 in QEventDispatcherGlib::processEvents () from
/usr/lib/libQtCore.so.4
#47 0xb60efa75 in ?? () from /usr/lib/libQtGui.so.4
#48 0xb5b8b1fa in QEventLoop::processEvents () from /usr/lib/libQtCore.so.4
#49 0xb5b8b642 in QEventLoop::exec () from /usr/lib/libQtCore.so.4
#50 0xb5b8dae9 in QCoreApplication::exec () from /usr/lib/libQtCore.so.4
#51 0xb604dbb7 in QApplication::exec () from /usr/lib/libQtGui.so.4
#52 0x0804bfef in _start ()

Reported using DrKonqi

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- 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 93628] looking up new mail on imap servers is not completly backgrounded

2008-09-15 Thread Timo Veith
http://bugs.kde.org/show_bug.cgi?id=93628


Timo Veith tv rz-zw fh-kl de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME




--- Comment #2 from Timo Veith   2008-09-15 11:06:58 ---
I cannot confirm that this bug exists any longer.


-- 
Configure bugmail: http://bugs.kde.org/userprefs.cgi?tab=email
--- 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