[kmail2] [Bug 414100] Text not visible when using dark theme

2023-12-05 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=414100

--- Comment #12 from Raúl  ---
I have tried the suggestion from https://bugs.kde.org/show_bug.cgi?id=414100#c7
and I see it as a workaround. Thanks Christophe!

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

[kmail2] [Bug 380924] Use white background for the message windows whatever the selected plasma theme.

2023-12-05 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=380924

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

--- Comment #2 from Raúl  ---
May this be related to https://bugs.kde.org/show_bug.cgi?id=414100 ?

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

[kmail2] [Bug 414100] Text not visible when using dark theme

2023-12-05 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=414100

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[Akonadi] [Bug 389829] "Unable to fetch item from backend" after deleting it using akonadi_maildir_resource_0

2021-12-08 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=389829

--- Comment #19 from Raúl  ---
Hello:

I think here we are talking about 2 different issues:

* Issue reported which is that it is not possible to fetch a specific email
from akonadi backend. I think this is related to database engine, database
corruption or akonadiserver lack of sync with database. This is what your
latest journalctl log (https://bugs.kde.org/attachment.cgi?id=144299) could be
related to (or maybe not. I'm not sure) 

* A permanent deadlock in either the communication from akonadi with the
database engine or a problem in the database handling. This is exposed when
sending the `show engine innodb status;` sql statement to the database engine.
This is also exposed with the error message ` Deadlock found when trying to get
lock; try restarting transaction QMYSQL3: Unable to execute statement`  I think
this problem should be followed up in the proper bug report
https://bugs.kde.org/show_bug.cgi?id=434706 This problems prevents going on in
the kmail usage as akonadi cannot properly fetch or handle data from database.
One workaround for my is killing the mariadb server and letting akonadi to
restart it.

Regards,

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

[Akonadi] [Bug 389829] "Unable to fetch item from backend" after deleting it using akonadi_maildir_resource_0

2021-12-06 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=389829

--- Comment #14 from Raúl  ---
Attila, sorry for the delay in answering. I'm not a KDE developer but I can
explain you what I suspect about this bug and how it can be related (if not
duped) to https://bugs.kde.org/show_bug.cgi?id=434706.

kontact/akonadi is a user fronted which shows data that those get from akonadi
which, in turn, is closely bounded to a database. The database is made up of
tables and registers. You can take a look at those tables and registers using
an external database browser or the database command line client. For instance,
in my case akonadi relies on mariadb database engine and I can query the
akonadi data externally like this:
```
$ mariadb -S/run/user/1001/akonadi/mysql.socket
MariaDB [(none)]> use akonadi;
MariaDB [akonadi]> show tables ;
+--+
| Tables_in_akonadi|
+--+
| collectionattributetable |
| collectionmimetyperelation   |
| collectionpimitemrelation|
| collectiontable  |
| flagtable|
| mimetypetable|
| parttable|
| parttypetable|
| pimitemflagrelation  |
| pimitemtable |
| pimitemtagrelation   |
| relationtable|
| relationtypetable|
| resourcetable|
| schemaversiontable   |
| tagattributetable|
| tagremoteidresourcerelationtable |
| tagtable |
| tagtypetable |
+--+
19 rows in set (0.001 sec)
```

kontact/kmail sends database queries to feed akonadi database and also to
retrieve data. I think either the query flow or the database engine has some
kind of bug or limitation. Hence one of the database queries locks some
database tables (like those listed above) and therefore most of the database
operations are locked (they cannot be completed).

https://bugs.kde.org/show_bug.cgi?id=434706 explains some similar behavior and
that is why I asked you to check if both reports are about the same problem.
You are right that https://bugs.kde.org/show_bug.cgi?id=434706 is too technical
and this is where you could get lost.

In order to check whether the problem is the same or not, here is the list of
actions that you can perform to verify:
* Wait for the problem to reproduce or reproduce it yourself (if possible)
* Check `journalctl -xe` output and look for recent  output like this:
```
kmail[1317]: org.kde.pim.akonadicore: Received response with a different tag!
akonadi_maildispatcher_agent[1586]: void SendJob::setFrom(const QString ) 
"m...@milianw.de"
akonadi_maildispatcher_agent[1586]: d->m_returnPath   ""
akonadiserver[1305]: org.kde.pim.akonadiserver: QueryBuilder::exec(): database
reported transaction deadlock, retrying transaction
akonadiserver[1305]: org.kde.pim.akonadiserver: "Deadlock found when trying to
get lock; try restarting transaction QMYSQL3: Unable to execute statement"
akonadi_imap_resource[1583]: org.kde.pim.imapresource: "Connection to server
lost."
```
* Additionally you can connect to the mariadb socket: `mariadb
-S/run/user/1001/akonadi/mysql.socket` (1001 is your user code, maybe it's a
different number)
* Issue the following db engine query: `SHOW ENGINE INNODB STATUS` you should
see that there is a deadlock detected: *LATEST DETECTED DEADLOCK* section in
the https://bugs.kde.org/show_bug.cgi?id=434706 bug

If you find out the same outcome, this and the other bug are quite possibly a
duplicated.

One additional comment is that I think the bug is not specifically about kmail,
but about akonadi and its database engine usage.

For getting a fix, we would need that someone with enough akonadi and DB
knowledge to analyze and find out possible solutions. Unfortunately that is not
by my hand.

Regards,

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

[Akonadi] [Bug 389829] "Unable to fetch item from backend" after deleting it using akonadi_maildir_resource_0

2021-10-30 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=389829

--- Comment #11 from Raúl  ---
Could you please, confirm if this is a dupe of
https://bugs.kde.org/show_bug.cgi?id=434706

In order to confirm, you would need to use mariadb/mysql client and check out
the transaction status are described in there.

Regards,

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

[kmail2] [Bug 401050] kmail mailto invokation fails if akonadi is loaded

2021-05-03 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=401050

Raúl  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #2 from Raúl  ---
  Hello:

Thanks for the feedback. Reporting that I see it is working now here on:

kontact 5.15.3 (20.08.3)
KDE Frameworks 5.78.0
Qt 5.15.2

Closing consequently.

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

[kontact] [Bug 401765] Accepting updated invitation caused Kontact crash.

2021-04-29 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=401765

--- Comment #3 from Raúl  ---
I wonder if https://bugs.kde.org/show_bug.cgi?id=431885 is related.

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

[kontact] [Bug 401765] Accepting updated invitation caused Kontact crash.

2021-04-29 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=401765

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

--- Comment #2 from Raúl  ---
Maybe a more recent backtrace is useful:

Kontact 5.13.3
KDE Frameworks 5.78.0
Qt 5.15.2

Application: Kontact (kontact), signal: Segmentation fault

[KCrash Handler]
#4  0x7f234d91f980 in KMime::Content::parent() const () at
/lib/x86_64-linux-gnu/libKF5Mime.so.5abi1
#5  0x7f234d91f9ab in KMime::Content::topLevel() const () at
/lib/x86_64-linux-gnu/libKF5Mime.so.5abi1
#6  0x7f22fdb31a49 in (anonymous
namespace)::UrlHandler::findReceiver(KMime::Content*) (node=0x55d88b067300) at
./plugins/messageviewer/bodypartformatter/calendar/text_calendar.cpp:414
#7  0x7f22fdb35d7e in (anonymous
namespace)::UrlHandler::handleInvitation(QString const&,
KCalendarCore::Attendee::PartStat, MimeTreeParser::Interface::BodyPart*,
MessageViewer::Viewer*) const (this=0x55d87e447880, iCal=...,
status=KCalendarCore::Attendee::Accepted, part=0x7fffb7742f70,
viewerInstance=0x55d87d20ac80) at
./plugins/messageviewer/bodypartformatter/calendar/text_calendar.cpp:875
#8  0x7f22fdb37dc6 in (anonymous
namespace)::UrlHandler::handleClick(MessageViewer::Viewer*,
MimeTreeParser::Interface::BodyPart*, QString const&) const
(this=0x55d87e447880, viewerInstance=0x55d87d20ac80, part=0x7fffb7742f70,
path=) at
./plugins/messageviewer/bodypartformatter/calendar/text_calendar.cpp:1217
#9  0x7f234bda6a19 in
MessageViewer::BodyPartURLHandlerManager::handleClick(QUrl const&,
MessageViewer::ViewerPrivate*) const () at
/lib/x86_64-linux-gnu/libKF5MessageViewer.so.5abi1
#10 0x7f234bda51f8 in MessageViewer::URLHandlerManager::handleClick(QUrl
const&, MessageViewer::ViewerPrivate*) const () at
/lib/x86_64-linux-gnu/libKF5MessageViewer.so.5abi1
#11 0x7f234bd8cbd1 in MessageViewer::ViewerPrivate::slotUrlOpen(QUrl
const&) () at /lib/x86_64-linux-gnu/libKF5MessageViewer.so.5abi1
#12 0x7f23ba135f91 in QObject::event(QEvent*) (this=0x55d87d3e1420,
e=0x7f2368163e50) at kernel/qobject.cpp:1314
#13 0x7f23babcb15f in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /lib/x86_64-linux-gnu/libQt5Widgets.so.5
#14 0x7f23ba109f6a in QCoreApplication::notifyInternal2(QObject*, QEvent*)
(receiver=0x55d87d3e1420, event=0x7f2368163e50) at
kernel/qcoreapplication.cpp:1063
#15 0x7f23ba10c9a1 in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) (receiver=0x0, event_type=0, data=0x55d87ca118f0) at
kernel/qcoreapplication.cpp:1817
#16 0x7f23ba161e33 in postEventSourceDispatch(GSource*, GSourceFunc,
gpointer) (s=0x55d87cb50cf0) at kernel/qeventdispatcher_glib.cpp:277
#17 0x7f23b0ee7e6b in g_main_context_dispatch () at
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#18 0x7f23b0ee8118 in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#19 0x7f23b0ee81cf in g_main_context_iteration () at
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#20 0x7f23ba1614bf in
QEventDispatcherGlib::processEvents(QFlags)
(this=0x55d87cb5cf30, flags=...) at kernel/qeventdispatcher_glib.cpp:423
#21 0x7f23ba10892b in
QEventLoop::exec(QFlags)
(this=this@entry=0x7fffb77433f0, flags=..., flags@entry=...) at
../../include/QtCore/../../src/corelib/global/qflags.h:69
#22 0x7f23ba110ba0 in QCoreApplication::exec() () at
../../include/QtCore/../../src/corelib/global/qflags.h:121
#23 0x55d87abe302b in  ()
#24 0x7f23b9aeed0a in __libc_start_main (main=0x55d87abe2610, argc=3,
argv=0x7fffb7743688, init=, fini=,
rtld_fini=, stack_end=0x7fffb7743678) at ../csu/libc-start.c:308
#25 0x55d87abe354a in  ()
[Inferior 1 (process 2111) detached]

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

[Akonadi] [Bug 434205] New: akonadiserver crashed handling DB(mariadb) deadlock

2021-03-09 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=434205

Bug ID: 434205
   Summary: akonadiserver crashed handling DB(mariadb) deadlock
   Product: Akonadi
   Version: unspecified
  Platform: Debian stable
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: server
  Assignee: kdepim-bugs@kde.org
  Reporter: rasas...@gmail.com
  Target Milestone: ---

Application: akonadiserver (5.15.3 (20.08.3))

Qt Version: 5.15.2
Frameworks Version: 5.78.0
Operating System: Linux 5.10.0-4-amd64 x86_64
Windowing system: X11
Distribution: Debian GNU/Linux bullseye/sid

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

kontact hd just retrieved some emails from my gmail pop3 account, then
akonadiserver crashed.

-- Backtrace:
Application: Akonadi Server (akonadiserver), signal: Segmentation fault

[KCrash Handler]
#4  std::__atomic_base::load (__m=std::memory_order_relaxed, this=0x0) at
/usr/include/c++/10/bits/atomic_base.h:420
#5  QAtomicOps::loadRelaxed (_q_value=...) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qatomic_cxx11.h:239
#6  QBasicAtomicInteger::loadRelaxed (this=0x0) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qbasicatomic.h:107
#7  QtPrivate::RefCount::ref (this=0x0) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qrefcount.h:55
#8  QByteArray::QByteArray (a=..., this=0x7f761a7fb510) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qbytearray.h:525
#9  Akonadi::Protocol::PartMetaData::PartMetaData (this=0x7f761a7fb510) at
./obj-x86_64-linux-gnu/src/private/protocol_gen.h:170
#10 Akonadi::Protocol::StreamPayloadResponse::metaData (this=0x7f7604204180) at
./obj-x86_64-linux-gnu/src/private/protocol_gen.h:3688
#11 Akonadi::Server::PartStreamer::requestPartMetaData (this=0x7f761a7fb6d0,
partName=...) at ./src/server/storage/partstreamer.cpp:60
#12 0x56351075a047 in Akonadi::Server::PartStreamer::streamPayload
(this=0x7f761a7fb6d0, part=..., partName=...) at
./src/server/storage/partstreamer.cpp:65
#13 0x56351075a1e5 in Akonadi::Server::PartStreamer::stream
(this=this@entry=0x7f761a7fb6d0, checkExists=checkExists@entry=true,
partName=..., partSize=@0x7f761a7fb6a8: 0, changed=changed@entry=0x0) at
./src/server/storage/partstreamer.cpp:319
#14 0x56351069cb37 in Akonadi::Server::ItemModifyHandler::parseStream
(this=0x7f760403ba10) at ./src/server/handler/itemmodifyhandler.cpp:280
#15 0x5635106706ce in Akonadi::Server::Connection::parseStream
(this=0x563510e1d740, cmd=...) at ./src/server/connection.cpp:170
#16 0x563510672a37 in operator() (__closure=) at
./src/server/connection.cpp:261
#17
Akonadi::Server::DbDeadlockCatcher::callFunc&>
(func=..., this=, func=..., recursionCounter=0) at
./src/server/storage/dbdeadlockcatcher.h:34
#18
Akonadi::Server::DbDeadlockCatcher::DbDeadlockCatcher
> (func=..., this=) at
./src/server/storage/dbdeadlockcatcher.h:27
#19 Akonadi::Server::Connection::handleIncomingData (this=) at
./src/server/connection.cpp:261
#20 0x7f765052ff91 in QObject::event (this=0x563510e1d740,
e=0x7f7604005780) at kernel/qobject.cpp:1314
#21 0x7f7650503f3f in doNotify (event=0x7f7604005780,
receiver=0x563510e1d740) at kernel/qcoreapplication.cpp:1153
#22 QCoreApplication::notify (event=, receiver=,
this=) at kernel/qcoreapplication.cpp:1139
#23 QCoreApplication::notifyInternal2 (receiver=0x563510e1d740,
event=0x7f7604005780) at kernel/qcoreapplication.cpp:1063
#24 0x7f76505069a1 in QCoreApplicationPrivate::sendPostedEvents
(receiver=0x0, event_type=0, data=0x563510e1d4a0) at
kernel/qcoreapplication.cpp:1817
#25 0x7f765055be33 in postEventSourceDispatch (s=0x7f7604004380) at
kernel/qeventdispatcher_glib.cpp:277
#26 0x7f764ecc4e6b in g_main_context_dispatch () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#27 0x7f764ecc5118 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#28 0x7f764ecc51cf in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#29 0x7f765055b4bf in QEventDispatcherGlib::processEvents
(this=0x7f7604000b60, flags=...) at kernel/qeventdispatcher_glib.cpp:423
#30 0x7f765050292b in QEventLoop::exec (this=this@entry=0x7f761a7fbd60,
flags=..., flags@entry=...) at
../../include/QtCore/../../src/corelib/global/qflags.h:69
#31 0x7f7650321a3e in QThread::exec (this=) at
../../include/QtCore/../../src/corelib/global/qflags.h:121
#32 0x7f7650322b81 in QThreadPrivate::start (arg=0x563510e1d8d0) at
thread/qthread_unix.cpp:329
#33 0x7f764f628ea7 in start_thread (arg=) at
pthread_create.c:477
#34 0x7f764ffa7def in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 16 (Thread 0x7f761affd700 (LWP 2410) "0x563510e1cdf0-"):
#1  0x7f764ecc50ae in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f764ecc51cf in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f765055b4db in 

[kmail2] [Bug 388869] continuing problem with duplicate and/or missing messages

2020-09-25 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=388869

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

--- Comment #4 from Raúl  ---
May this be a dupe from https://bugs.kde.org/show_bug.cgi?id=389829 ?

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

[Akonadi] [Bug 389829] "Unable to fetch item from backend" after deleting it using akonadi_maildir_resource_0

2020-09-25 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=389829

--- Comment #7 from Raúl  ---
Hello I'm on debian sid and I'm still seeing this bug with:

Kontact/Kmail 5.14.1 (20.04.0)
KDE Frameworks 5.70.0
Qt 5.14.2
POP3 email account.

I've just attached a log from akonadi. The bad thing for me now is that this
bug makes akonadiserver crash.

This brings some inconveniences like it's not brought up again automatically
and you cannot go on with the kmail usage. Some other times the mysql server
(the backend I use) is bring up again, so there are 2 mysql sessions which
leads to akonadiserver annoyance as it cannot handle the situation. You would
need to stop akonadi server, kill all the mysql instances and start
akonadiserver again.

The problem is reproduced here quite often as the ghost email (wherever it is)
is not being dealt. Let me know if I can provide more information.

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

[Akonadi] [Bug 389829] "Unable to fetch item from backend" after deleting it using akonadi_maildir_resource_0

2020-09-25 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=389829

--- Comment #6 from Raúl  ---
Created attachment 131921
  --> https://bugs.kde.org/attachment.cgi?id=131921=edit
akonadiserver log (from .xsession-errors)

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

[kontact] [Bug 425872] Kontact crashes when accepting a delegated invitation

2020-09-14 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=425872

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[korganizer] [Bug 419836] Events with empty UID are present in akonadi console but not showing up in the calendar

2020-09-10 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=419836

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

--- Comment #8 from Raúl  ---
Bumped.

Debian sid.

Kontact 5.14.1 (20.04.0)
KDE Frameworks 5.70.0
Qt 5.14.2

I can see the events on akonadiconsole but not on korganizer. I have copied the
payload of a working and non-working event in some files which I can send
privately to someone interested in debugging this issue.

Regards,

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

[Akonadi] [Bug 338658] GMail, Novell Groupwise, other IMAP: "Multiple merge candidates, aborting"

2020-08-26 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=338658

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[Akonadi] [Bug 422490] maildir resource gets stuck on synchronizing a folder with 72 messages

2020-07-17 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=422490

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kmail2] [Bug 389073] kmail doesnt start with mailto:

2018-11-14 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=389073

Raúl  changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kmail2] [Bug 401050] New: kmail mailto invokation fails if akonadi is loaded

2018-11-14 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=401050

Bug ID: 401050
   Summary: kmail mailto invokation fails if akonadi is loaded
   Product: kmail2
   Version: 5.9.1
  Platform: Debian unstable
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kdepim-bugs@kde.org
  Reporter: rasas...@gmail.com
  Target Milestone: ---

SUMMARY
Invoking kmail mailto handler from the command line does nothing if akonadi is
loaded.


STEPS TO REPRODUCE
1. Make sure akonadi is not run it or stop it (akonadictl stop)
2. Invoke kmail from command line: kmail -qwindowtitle KMail
mailto:847...@bugs.debian.org
3. See kmail compose window appears
4. Now akonadi should be running (check akonadictl status)
5. Repeat the previous kmail command: kmail -qwindowtitle KMail
mailto:847...@bugs.debian.org

OBSERVED RESULT
kmail compose window does not appear. The only traces in console are:
QIODevice::read (QLocalSocket): device not open
(repeated several times)

EXPECTED RESULT
kmail compose window does appear. 

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Debian sid
kmail 5.9.1
KDE Frameworks 5.51.0
Qt 5.11.2 (compilado con 5.11.2)

ADDITIONAL INFORMATION
I'm not running a full plasma desktop (temporarily). I run lxqt.
Maybe related to https://bugs.kde.org/show_bug.cgi?id=389073

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

[Akonadi] [Bug 389829] "Unable to fetch item from backend" after deleting it using akonadi_maildir_resource_0

2018-05-15 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=389829

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[Akonadi] [Bug 255388] Kmail filters dont work in incoming mail

2018-05-12 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=255388

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[Akonadi] [Bug 343114] gets stuck on one request that times out, kmail and akonadiconsole do not display any mail payloads anymore, stuck waiting

2018-05-12 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=343114

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kmail2] [Bug 389659] Please wait while the message is transferred

2018-05-07 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=389659

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kmail2] [Bug 387876] Check mail stops working, must restart akonadi to fix

2018-05-02 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=387876

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kmail2] [Bug 380979] Kmail hangs on "Retrieving folder content"

2018-05-02 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=380979

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

--- Comment #1 from Raúl <rasas...@gmail.com> ---
Looking into similar issues, I came accross #377877. Could this be a duplicate
of #377877?

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

[kmail2] [Bug 377877] kmail stuck with retrieving folders 0%

2018-05-02 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=377877

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kmail2] [Bug 388790] SMTP does not support OAuth2

2018-03-06 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=388790

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kontact] [Bug 369118] Multiple selection of "find in message" causes crash

2017-11-15 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=369118

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kmail2] [Bug 317803] Kmail2 renders colors based on the user system colors rather than the default colors browsers use.

2017-04-25 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=317803

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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

[kontact] [Bug 350570] separation applications in Kontact

2015-11-24 Thread Raúl via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=350570

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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


[kontact] [Bug 347427] Kontact crash when pressing A to answer a mail

2015-08-31 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=347427

Raúl <rasas...@gmail.com> changed:

   What|Removed |Added

 CC||rasas...@gmail.com

--- Comment #1 from Raúl <rasas...@gmail.com> ---
According the backtrace, I'd discard #346742, #347050. #347134 and #347139 as
duplicates of this one.
Also this one does seem as a duplicate of #343408
HTH,

-- 
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 347236] kmail crashes while trying to open kontact

2015-08-26 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=347236

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

-- 
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 350774] Incorrent charset encoding viewing message from file

2015-07-29 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=350774

--- Comment #2 from Raúl rasas...@gmail.com ---
Created attachment 93797
  -- https://bugs.kde.org/attachment.cgi?id=93797action=edit
Sample email with iso-8859-1 text body (Content-Type UTF-8)

-- 
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 350774] Incorrent charset encoding viewing message from file

2015-07-29 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=350774

--- Comment #3 from Raúl rasas...@gmail.com ---
Created attachment 93798
  -- https://bugs.kde.org/attachment.cgi?id=93798action=edit
Sample email with iso-8859-1 text body (No Content-Type specified)

-- 
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 350774] Incorrect charset encoding viewing message from file

2015-07-29 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=350774

Raúl rasas...@gmail.com changed:

   What|Removed |Added

Summary|Incorrent charset encoding  |Incorrect charset encoding
   |viewing message from file   |viewing message from file

-- 
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 350774] New: Incorrent charset encoding viewing message from file

2015-07-29 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=350774

Bug ID: 350774
   Summary: Incorrent charset encoding viewing message from file
   Product: kmail2
   Version: 4.14.4
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: composer
  Assignee: kdepim-bugs@kde.org
  Reporter: rasas...@gmail.com

I have an email source in a text file. I use kmail --view file name w/absolute
path to open it in a composer.
Even Content-Type header specifies UTF-8 charset, kmail composer is unable to
cope with encoding, showing ugly characters instead of the right ones.

Reproducible: Always

Steps to Reproduce:
1. Download attached sample-email file
2. kmail --view $(pwd)/sample-email


Actual Results:  
Non-ascii characters, like 'á' are not shown properly

Expected Results:  
Non-ascii characters, like 'á' are shown properly

Debian unstable with kdepim and kdepimlibs from experimental. Plasma-desktop
from KF5
Versions:
kdepim 4.14.5
kdepimlibs 4.14.6
kdelibs 4.14.2
qt4 4.8.7
qt5 5.4.2
kf5 5.12.0

-- 
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 350774] Incorrent charset encoding viewing message from file

2015-07-29 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=350774

--- Comment #4 from Raúl rasas...@gmail.com ---
Interestingly enough, I have the following results using kmail --view with
these attached files:
- Sample email with iso-8859-1 text body (Content-Type UTF-8): Shown correctly,
even Content-Type is wrongly specified as charset=UTF-8
- Sample email with iso-8859-1 text body (No Content-Type specified): Shown
incorrectly.

I have tested Kmail preferences - composer - charset with default us-ascii
as first option and prioritizing utf-8 (either as system locale or forced) with
no differences in behaviour. 

Also when opening email file, I have tested changing encoding in view-set
encoding. Default is auto, but trying utf-8 works for any of the iso-8859-1
encoded files. For utf-8 email, choosing utf-8 encoding in the view menu does
not work and any other worsen things.

Doing kmail --view would be a typical use case when I want to send a git
format-patch generated file.

I have experience this wrong behaviour since a long time ago. Only that I
hadn't reported it. Also, I used to convert files to iso-8859-1 to sort out the
issue.

-- 
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 350774] Incorrent charset encoding viewing message from file

2015-07-29 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=350774

--- Comment #1 from Raúl rasas...@gmail.com ---
Created attachment 93796
  -- https://bugs.kde.org/attachment.cgi?id=93796action=edit
Sample email with utf-8 text body

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


[kontact] [Bug 343408] Kontact crash when press R to reply to a message

2015-05-06 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=343408

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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


[kontact] [Bug 330850] Kontact crashes when updating Kolab contacts

2015-01-21 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=330850

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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


[kontact] [Bug 330850] Kontact crashes when updating Kolab contacts

2015-01-21 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=330850

--- Comment #1 from Raúl rasas...@gmail.com ---
Created attachment 90569
  -- https://bugs.kde.org/attachment.cgi?id=90569action=edit
New crash information added by DrKonqi

kontact (4.14.2) on KDE Platform 4.14.2 using Qt 4.8.6

- What I was doing when the application crashed:

I opened kontact, went to kmail component.

I moved a big imported mail folder to another mail folder created by me. This
was a lengthy operation and as it run, I opened a mail in a file using kmail
--view filename

-- Backtrace (Reduced):
#6  0x7f1216c66107 in __GI_raise (sig=sig@entry=6) at
../nptl/sysdeps/unix/sysv/linux/raise.c:56
#7  0x7f1216c674e8 in __GI_abort () at abort.c:89
[...]
#11 0x7f11ae9661ef in operator- (this=optimized out) at
../../mailcommon/kernel/mailkernel.cpp:57
#12 MailCommon::Kernel::self () at ../../mailcommon/kernel/mailkernel.cpp:73
#13 0x7f11ae9b0043 in MailCommon::FolderCollection::writeConfig
(this=this@entry=0x29dd7e0) at ../../mailcommon/folder/foldercollection.cpp:218

-- 
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 292767] KMail2 (4.8.0) incorrectly displays some messages (does not process the encoding)

2014-10-06 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=292767

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

--- Comment #11 from Raúl rasas...@gmail.com ---
Confirmed on kontact and kdepim 4.14.1 on debian sid.

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


[kontact] [Bug 298328] Crash on Kontact Startup

2014-09-17 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=298328

--- Comment #22 from Raúl rasas...@gmail.com ---
Created attachment 88724
  -- https://bugs.kde.org/attachment.cgi?id=88724action=edit
New crash information added by DrKonqi

kontact (4.14) on KDE Platform 4.14.0 using Qt 4.8.6

Bump on kontact 4.14.0 and Qt4 4.8.6+git64-g5dc8b2b (Debian sid).

-- Backtrace (Reduced):
#6  QString (other=..., this=this@entry=0x7fff02632ac0) at
/usr/include/qt4/QtCore/qstring.h:725
#7  KontactInterface::Plugin::identifier (this=0xafd2590) at
../../kontactinterface/plugin.cpp:103
#8  0x7f5643465648 in Kontact::MainWindow::activateInitialPluginModule
(this=0x12ee8e0) at ../../../kontact/src/mainwindow.cpp:329
#9  0x00403e7a in KontactApp::newInstance (this=0x7fff02633780) at
../../../kontact/src/main.cpp:148
#10 0x7f564300c62a in KUniqueApplicationAdaptor::newInstance
(this=0x1289650, asn_id=..., args=...) at
../../kdeui/kernel/kuniqueapplication.cpp:442

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


[kontact] [Bug 298328] Crash on Kontact Startup

2014-09-17 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=298328

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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


[kontact] [Bug 339024] New: Kontact/Kmail crashed when trying to print an email.

2014-09-12 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=339024

Bug ID: 339024
   Summary: Kontact/Kmail crashed when trying to print an email.
   Product: kontact
   Version: unspecified
  Platform: Debian unstable
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: kdepim-bugs@kde.org
  Reporter: rasas...@gmail.com

Application: kontact (4.14)
KDE Platform Version: 4.14.0
Qt Version: 4.8.6
Operating System: Linux 3.16-1-amd64 x86_64
Distribution: Debian GNU/Linux unstable (sid)

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

I opened a pair of emails in order to print them. After I went to the first
one, I pressed ctrl-p and kontact crashed. Please, let me know if I can provide
more information.

-- Backtrace:
Application: Kontact (kontact), signal: Aborted
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
[Current thread is 1 (Thread 0x7f4fea3c7900 (LWP 7345))]

Thread 6 (Thread 0x7f4fca131700 (LWP 7355)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x7f4fe503927f in ?? () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#2  0x7f4fe50392b9 in ?? () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#3  0x7f4fe168e0a4 in start_thread (arg=0x7f4fca131700) at
pthread_create.c:309
#4  0x7f4fe788ac2d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 5 (Thread 0x7f4f8981e700 (LWP 7434)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x7f4fe4d69073 in ?? () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#2  0x7f4fe5067e36 in ?? () from /usr/lib/x86_64-linux-gnu/libQtWebKit.so.4
#3  0x7f4fe168e0a4 in start_thread (arg=0x7f4f8981e700) at
pthread_create.c:309
#4  0x7f4fe788ac2d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 4 (Thread 0x7f4f794f0700 (LWP 7860)):
#0  0x7fffb4336e6e in clock_gettime ()
#1  0x7f4fe789787d in __GI___clock_gettime (clock_id=optimized out,
tp=optimized out) at ../sysdeps/unix/clock_gettime.c:115
#2  0x7f4fe7f2b5f5 in do_gettime (frac=synthetic pointer, sec=synthetic
pointer) at tools/qelapsedtimer_unix.cpp:127
#3  qt_gettime () at tools/qelapsedtimer_unix.cpp:144
#4  0x7f4fe800dbb9 in QTimerInfoList::updateCurrentTime
(this=this@entry=0x7f4f74003120) at kernel/qeventdispatcher_unix.cpp:354
#5  0x7f4fe800ca97 in timerSourceCheckHelper (src=0x7f4f740030c0) at
kernel/qeventdispatcher_glib.cpp:150
#6  0x7f4fe11abb31 in g_main_context_check () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#7  0x7f4fe11ac0f3 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#8  0x7f4fe11ac26c in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#9  0x7f4fe800d167 in QEventDispatcherGlib::processEvents
(this=0x7f4f740008c0, flags=...) at kernel/qeventdispatcher_glib.cpp:425
#10 0x7f4fe7fdc801 in QEventLoop::processEvents
(this=this@entry=0x7f4f794efcd0, flags=...) at kernel/qeventloop.cpp:149
#11 0x7f4fe7fdcb65 in QEventLoop::exec (this=this@entry=0x7f4f794efcd0,
flags=...) at kernel/qeventloop.cpp:204
#12 0x7f4fe7ed1b99 in QThread::exec (this=optimized out) at
thread/qthread.cpp:538
#13 0x7f4fe7ed43ff in QThreadPrivate::start (arg=0x16de0d0) at
thread/qthread_unix.cpp:349
#14 0x7f4fe168e0a4 in start_thread (arg=0x7f4f794f0700) at
pthread_create.c:309
#15 0x7f4fe788ac2d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 3 (Thread 0x7f4f72d5a700 (LWP 13380)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x7f4fe7ed4956 in wait (time=18446744073709551615, this=0x7bd6670) at
thread/qwaitcondition_unix.cpp:86
#2  QWaitCondition::wait (this=this@entry=0x843f0c8,
mutex=mutex@entry=0x843f0c0, time=time@entry=18446744073709551615) at
thread/qwaitcondition_unix.cpp:158
#3  0x7f4fe8f07b35 in QFileInfoGatherer::run (this=0x843f0b0) at
dialogs/qfileinfogatherer.cpp:214
#4  0x7f4fe7ed43ff in QThreadPrivate::start (arg=0x843f0b0) at
thread/qthread_unix.cpp:349
#5  0x7f4fe168e0a4 in start_thread (arg=0x7f4f72d5a700) at
pthread_create.c:309
#6  0x7f4fe788ac2d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 2 (Thread 0x7f4f64055700 (LWP 13381)):
#0  0x7f4fe1691540 in __pthread_mutex_unlock_usercnt (mutex=0x7f4f5c000a60,
decr=optimized out) at pthread_mutex_unlock.c:57
#1  0x7f4fe11f01f1 in g_mutex_unlock () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f4fe11abffd in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f4fe11ac26c in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7f4fe800d167 in QEventDispatcherGlib::processEvents
(this=0x7f4f5c0008c0, 

[kontact] [Bug 339024] Kontact/Kmail crashed when trying to print an email.

2014-09-12 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=339024

--- Comment #1 from Raúl rasas...@gmail.com ---
Created attachment 88672
  -- https://bugs.kde.org/attachment.cgi?id=88672action=edit
Possibly conflicting file.

Same crash when I select an email, right click on it and choose print. I'm
attaching 
/usr/share/mime/application/xml.xml which seems relevant.

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


[kontact] [Bug 339024] Kontact/Kmail crashed when trying to print an email.

2014-09-12 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=339024

--- Comment #2 from Raúl rasas...@gmail.com ---
More noise and a solution. Looks the xml file was corrupted. I forced a
regeneration (using update-mime-database on debian) and now it works as
expected, doesn't crash.
I'm not sure if this should be kept open, if you don't think so feel free to
close.

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


[kontact] [Bug 338926] New: Crash closing akregator [Akregator::Folder::updateUnreadCount]

2014-09-08 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=338926

Bug ID: 338926
   Summary: Crash closing akregator
[Akregator::Folder::updateUnreadCount]
   Product: kontact
   Version: unspecified
  Platform: Debian unstable
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: kdepim-bugs@kde.org
  Reporter: rasas...@gmail.com

Application: kontact (4.14)
KDE Platform Version: 4.14.0
Qt Version: 4.8.6
Operating System: Linux 3.14-2-amd64 x86_64
Distribution: Debian GNU/Linux unstable (sid)

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

I closed a just opened and resumed akregator session within kontact.

-- 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 0x7f822b0e5900 (LWP 5177))]

Thread 4 (Thread 0x7f820ae4e700 (LWP 5194)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x7f8225d5427f in WTF::TCMalloc_PageHeap::scavengerThread
(this=0x7f82268408d4 WTF::pageheap_memory+57556) at
/build/qtwebkit-d9VXNv/qtwebkit-2.3.2.dfsg/Source/WTF/wtf/FastMalloc.cpp:2575
#2  0x7f8225d542b9 in WTF::TCMalloc_PageHeap::runScavengerThread
(context=0x7f82268408d4 WTF::pageheap_memory+57556) at
/build/qtwebkit-d9VXNv/qtwebkit-2.3.2.dfsg/Source/WTF/wtf/FastMalloc.cpp:1771
#3  0x7f82223a90a4 in start_thread (arg=0x7f820ae4e700) at
pthread_create.c:309
#4  0x7f82285a5c2d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 3 (Thread 0x7f81ca53b700 (LWP 5251)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x7f8225a84073 in JSC::BlockAllocator::blockFreeingThreadMain
(this=0x7f820a5b8398) at
/build/qtwebkit-d9VXNv/qtwebkit-2.3.2.dfsg/Source/JavaScriptCore/heap/BlockAllocator.cpp:128
#2  0x7f8225d82e36 in WTF::wtfThreadEntryPoint(void*) () at
/build/qtwebkit-d9VXNv/qtwebkit-2.3.2.dfsg/Source/WTF/wtf/ThreadingPthreads.cpp:196
#3  0x7f82223a90a4 in start_thread (arg=0x7f81ca53b700) at
pthread_create.c:309
#4  0x7f82285a5c2d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 2 (Thread 0x7f81ba266700 (LWP 5416)):
#0  0x7f822859d0ed in poll () at ../sysdeps/unix/syscall-template.S:81
#1  0x7f8221ec7154 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f8221ec726c in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f8228d29167 in QEventDispatcherGlib::processEvents
(this=0x7f81b40008c0, flags=...) at kernel/qeventdispatcher_glib.cpp:425
#4  0x7f8228cf8801 in QEventLoop::processEvents
(this=this@entry=0x7f81ba265cd0, flags=...) at kernel/qeventloop.cpp:149
#5  0x7f8228cf8b65 in QEventLoop::exec (this=this@entry=0x7f81ba265cd0,
flags=...) at kernel/qeventloop.cpp:204
#6  0x7f8228bedb99 in QThread::exec (this=optimized out) at
thread/qthread.cpp:538
#7  0x7f8228bf03ff in QThreadPrivate::start (arg=0x27e9c50) at
thread/qthread_unix.cpp:349
#8  0x7f82223a90a4 in start_thread (arg=0x7f81ba266700) at
pthread_create.c:309
#9  0x7f82285a5c2d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 1 (Thread 0x7f822b0e5900 (LWP 5177)):
[KCrash Handler]
#6  0x in ?? ()
#7  0x7f81a93d8810 in Akregator::Folder::updateUnreadCount
(this=this@entry=0x9b00af0) at ../../../akregator/src/folder.cpp:313
#8  0x7f81a93d8e49 in Akregator::Folder::slotChildChanged (this=0x9b00af0)
at ../../../akregator/src/folder.cpp:327
#9  0x7f8228d0ec5c in QMetaObject::activate (sender=0x9afef80,
m=m@entry=0x7f81a9600800 Akregator::TreeNode::staticMetaObject,
local_signal_index=local_signal_index@entry=1, argv=argv@entry=0x7fff657c3780)
at kernel/qobject.cpp:3567
#10 0x7f81a93e7fd2 in Akregator::TreeNode::signalChanged (this=optimized
out, _t1=0x9afef80) at moc_treenode.cpp:127
#11 0x7f81a93d8e18 in Akregator::Folder::removeChild (this=0x9afef80,
node=node@entry=0x9afda20) at ../../../akregator/src/folder.cpp:262
#12 0x7f81a93d0537 in Akregator::TreeNode::emitSignalDestroyed
(this=this@entry=0x9afda20) at ../../../akregator/src/treenode.cpp:74
#13 0x7f81a93c7439 in Akregator::Feed::~Feed (this=0x9afda20,
__in_chrg=optimized out, __vtt_parm=optimized out) at
../../../akregator/src/feed.cpp:320
#14 0x7f81a93c7689 in Akregator::Feed::~Feed (this=0x9afda20,
__in_chrg=optimized out, __vtt_parm=optimized out) at
../../../akregator/src/feed.cpp:323
#15 0x7f81a93d7516 in Akregator::Folder::FolderPrivate::~FolderPrivate
(this=0x913a0b0, __in_chrg=optimized out) at
../../../akregator/src/folder.cpp:70
#16 0x7f81a93d7578 in Akregator::Folder::~Folder (this=0x9afef80,
__in_chrg=optimized out) at 

[akregator] [Bug 336417] Akregator crashes when being closed

2014-09-06 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=336417

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

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


[kontact] [Bug 303946] Kontact started twice and chrashed when closen one instance

2014-03-27 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=303946

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

--- Comment #4 from Raúl rasas...@gmail.com ---
Bug still alive in kontact 4.11.5

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


[kontact] [Bug 327906] New: Crash when closing akregator tab.

2013-11-21 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=327906

Bug ID: 327906
   Summary: Crash when closing akregator tab.
Classification: Unclassified
   Product: kontact
   Version: 4.11.3
  Platform: Debian unstable
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: kdepim-bugs@kde.org
  Reporter: rasas...@gmail.com

Application: kontact (4.11.3)
KDE Platform Version: 4.11.3
Qt Version: 4.8.6
Operating System: Linux 3.12-trunk-amd64 x86_64
Distribution: Debian GNU/Linux unstable (sid)

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

I opened kontact, went to akregator. I had lost my  previously saved session,
so it opened with no tabs. I browse through one of my feeds, opened several
articles (each one on a new tab), read last one and close the tab. Then I got
the crash.

-- 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 0x7f6b5b8f1780 (LWP 5164))]

Thread 3 (Thread 0x7f6b3ffb7700 (LWP 5171)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x7f6b567677d2 in WTF::TCMalloc_PageHeap::scavengerThread
(this=optimized out) at wtf/FastMalloc.cpp:2499
#2  0x7f6b56767809 in WTF::TCMalloc_PageHeap::runScavengerThread
(context=optimized out) at wtf/FastMalloc.cpp:1622
#3  0x7f6b5362ae0e in start_thread (arg=0x7f6b3ffb7700) at
pthread_create.c:311
#4  0x7f6b58e470fd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:113

Thread 2 (Thread 0x7f6b3f6b6700 (LWP 5172)):
#0  0x7f6b58e3b95d in poll () at ../sysdeps/unix/syscall-template.S:81
#1  0x7f6b53153194 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f6b5315329c in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f6b595b74d6 in QEventDispatcherGlib::processEvents
(this=0x7f6b380008c0, flags=...) at kernel/qeventdispatcher_glib.cpp:427
#4  0x7f6b59588f9f in QEventLoop::processEvents
(this=this@entry=0x7f6b3f6b5df0, flags=...) at kernel/qeventloop.cpp:149
#5  0x7f6b59589295 in QEventLoop::exec (this=this@entry=0x7f6b3f6b5df0,
flags=...) at kernel/qeventloop.cpp:204
#6  0x7f6b5948591f in QThread::exec (this=optimized out) at
thread/qthread.cpp:537
#7  0x7f6b59487fef in QThreadPrivate::start (arg=0x97c0b0) at
thread/qthread_unix.cpp:349
#8  0x7f6b5362ae0e in start_thread (arg=0x7f6b3f6b6700) at
pthread_create.c:311
#9  0x7f6b58e470fd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:113

Thread 1 (Thread 0x7f6b5b8f1780 (LWP 5164)):
[KCrash Handler]
#6  0x7f6add15649c in KJS::Node::deref (this=0x25e36a20) at
../../kjs/nodes.cpp:121
#7  0x7f6add18e780 in ~RefPtr (this=0x1eb164d0, __in_chrg=optimized out)
at ../../kjs/wtf/RefPtr.h:52
#8  ~DotAccessorNode (this=0x1eb164c0, __in_chrg=optimized out) at
../../kjs/nodes.h:443
#9  KJS::DotAccessorNode::~DotAccessorNode (this=0x1eb164c0,
__in_chrg=optimized out) at ../../kjs/nodes.h:443
#10 0x7f6add15649f in KJS::Node::deref (this=0x1eb164c0) at
../../kjs/nodes.cpp:121
#11 0x7f6add1acb4a in ~RefPtr (this=0x15bb48a0, __in_chrg=optimized out)
at ../../kjs/wtf/RefPtr.h:52
#12 ~FunctionCallReferenceNode (this=0x15bb4890, __in_chrg=optimized out) at
../../kjs/nodes.h:523
#13 KJS::FunctionCallReferenceNode::~FunctionCallReferenceNode
(this=0x15bb4890, __in_chrg=optimized out) at ../../kjs/nodes.h:523
#14 0x7f6add15649f in KJS::Node::deref (this=0x15bb4890) at
../../kjs/nodes.cpp:121
#15 0x7f6add1acabc in ~RefPtr (this=0x15bb48d8, __in_chrg=optimized out)
at ../../kjs/wtf/RefPtr.h:52
#16 ~BinaryOperatorNode (this=0x15bb48c0, __in_chrg=optimized out) at
../../kjs/nodes.h:659
#17 KJS::BinaryOperatorNode::~BinaryOperatorNode (this=0x15bb48c0,
__in_chrg=optimized out) at ../../kjs/nodes.h:659
#18 0x7f6add15649f in KJS::Node::deref (this=0x15bb48c0) at
../../kjs/nodes.cpp:121
#19 0x7f6add1acb8a in ~RefPtr (this=0x15bb4938, __in_chrg=optimized out)
at ../../kjs/wtf/RefPtr.h:52
#20 ~ConditionalNode (this=0x15bb4920, __in_chrg=optimized out) at
../../kjs/nodes.h:693
#21 KJS::ConditionalNode::~ConditionalNode (this=0x15bb4920,
__in_chrg=optimized out) at ../../kjs/nodes.h:693
#22 0x7f6add15649f in KJS::Node::deref (this=0x15bb4920) at
../../kjs/nodes.cpp:121
#23 0x7f6add18e2fc in ~RefPtr (this=0x15bb4970, __in_chrg=optimized out)
at ../../kjs/wtf/RefPtr.h:52
#24 ~AssignNode (this=0x15bb4950, __in_chrg=optimized out) at
../../kjs/nodes.h:707
#25 KJS::AssignNode::~AssignNode (this=0x15bb4950, __in_chrg=optimized out)
at ../../kjs/nodes.h:707
#26 0x7f6add15649f in KJS::Node::deref (this=0x15bb4950) at
../../kjs/nodes.cpp:121
#27 0x7f6add18e37c in ~RefPtr (this=0x15bb4998, __in_chrg=optimized out)
at 

[kontact] [Bug 322594] KMail crashed during importing of large mailbox

2013-09-17 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=322594

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

-- 
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 277770] KMail2 is slow when accessing messages in folder

2013-06-18 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=20

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

-- 
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 315568] kmail crash on startup

2013-06-16 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=315568

Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com

-- 
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 125831] kmail doesn't popup contracted folders name

2012-08-22 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=125831

--- Comment #3 from Raúl rasas...@gmail.com ---
I'm willing to retest. Unfortunately, it'd take a while to be able to run
kmail2. Meanwhile, I'd appreciate if anyone could check this.

-- 
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 193780] Closing akregator causes crash (incl. Kontact-with-akregator)

2012-06-09 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=193780

--- Comment #30 from Raúl rasas...@gmail.com ---
Cristoph, thanks for you clarification. I applied the suggested commit to the
Debian version which is currently 4.4.11 and the crash doesn't appear. Now I
don't know whose crash I have been seeing.
How do you see this bug different to
https://bugs.kde.org/show_bug.cgi?id=285938 so I could triage which one I see?
Also anyone could reproduce this bug with the proposed patch applied?
Thanks

-- 
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 193780] Closing akregator causes crash (incl. Kontact-with-akregator)

2012-06-03 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=193780

--- Comment #28 from Raúl rasas...@gmail.com ---
Hi. https://bugs.kde.org/show_bug.cgi?id=285938 looks like a dupe of this but I
don't understand why the one I'm referring to is fixed whereas this one is.
Regards,

-- 
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 193780] Closing akregator causes crash (incl. Kontact-with-akregator)

2012-02-09 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=193780


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




-- 
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 176845] Occasional crash when hitting 'a' (Reply to All)

2011-04-01 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=176845


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




-- 
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 194268] Kontact crashes at start (Kontact::Plugin::part, K*UniqueAppHandler::newInstance, Kontact::UniqueAppHandler::newInstance)

2011-01-12 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=194268


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




-- 
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 128357] Crash after hovering the mouse over an URL [KMMessage::bodyPart, AttachmentURLHandler::statusBarMessage, KMail::URLHandlerManager::statusBarMessage, KMReaderWin::slotUrlOn]

2010-12-23 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=128357


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




-- 
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 255994] New: «Kontact crashes selecting show only icons on left panel»

2010-11-03 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=255994

   Summary: «Kontact crashes selecting show only icons on left
panel»
   Product: kontact
   Version: unspecified
  Platform: Ubuntu Packages
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application: kontact (4.4.7)
KDE Platform Version: 4.5.2 (KDE 4.5.2)
Qt Version: 4.7.0
Operating System: Linux 2.6.35-22-generic x86_64
Distribution: Ubuntu 10.10

-- Information about the crash:
- What I was doing when the application crashed:
i change icon to big and crash
- Unusual behavior I noticed:

«Kontact crashes selecting show only icons on left panel»

-- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[Current thread is 1 (Thread 0x7f3329f13780 (LWP 7522))]

Thread 2 (Thread 0x7f3302256710 (LWP 7611)):
#0  0x7f3326f491d3 in __poll (fds=value optimized out, nfds=value
optimized out, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:87
#1  0x7f331fcb7009 in g_main_context_poll (context=0x2d79f10, block=value
optimized out, dispatch=value optimized out, self=value optimized out) at
/build/buildd/glib2.0-2.26.0/glib/gmain.c:3093
#2  g_main_context_iterate (context=0x2d79f10, block=value optimized out,
dispatch=value optimized out, self=value optimized out) at
/build/buildd/glib2.0-2.26.0/glib/gmain.c:2775
#3  0x7f331fcb745c in g_main_context_iteration (context=0x2d79f10,
may_block=1) at /build/buildd/glib2.0-2.26.0/glib/gmain.c:2843
#4  0x7f332768d1e6 in QEventDispatcherGlib::processEvents (this=0x3086f90,
flags=value optimized out) at kernel/qeventdispatcher_glib.cpp:417
#5  0x7f332765fa02 in QEventLoop::processEvents (this=value optimized
out, flags=) at kernel/qeventloop.cpp:149
#6  0x7f332765fdec in QEventLoop::exec (this=0x7f3302255d90, flags=) at
kernel/qeventloop.cpp:201
#7  0x7f332756a2fd in QThread::exec (this=value optimized out) at
thread/qthread.cpp:490
#8  0x7f332763f5f8 in QInotifyFileSystemWatcherEngine::run (this=0x2cb6410)
at io/qfilesystemwatcher_inotify.cpp:248
#9  0x7f332756d27e in QThreadPrivate::start (arg=0x2cb6410) at
thread/qthread_unix.cpp:266
#10 0x7f3322046971 in start_thread (arg=value optimized out) at
pthread_create.c:304
#11 0x7f3326f5591d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#12 0x in ?? ()

Thread 1 (Thread 0x7f3329f13780 (LWP 7522)):
[KCrash Handler]
#6  QModelIndex (this=0x23be4e0, child=...) at
../../include/QtCore/../../src/corelib/kernel/qabstractitemmodel.h:65
#7  QSortFilterProxyModel::parent (this=0x23be4e0, child=...) at
itemviews/qsortfilterproxymodel.cpp:1656
#8  0x7f3327653133 in parent (this=value optimized out) at
kernel/qabstractitemmodel.h:389
#9  QPersistentModelIndex::parent (this=value optimized out) at
kernel/qabstractitemmodel.cpp:347
#10 0x7f33285be1af in parent (this=0x23bfe90, index=...) at
itemviews/qitemselectionmodel.h:78
#11 contains (this=0x23bfe90, index=...) at itemviews/qitemselectionmodel.h:85
#12 QItemSelection::contains (this=0x23bfe90, index=...) at
itemviews/qitemselectionmodel.cpp:423
#13 0x7f33285bf845 in QItemSelectionModel::isSelected (this=value
optimized out, index=...) at itemviews/qitemselectionmodel.cpp:1200
#14 0x7f3328590042 in QListView::paintEvent (this=value optimized out,
e=value optimized out) at itemviews/qlistview.cpp:984
#15 0x7f332806cc2e in QWidget::event (this=0x2229f10, event=0x7fff86246350)
at kernel/qwidget.cpp:8333
#16 0x7f33284385e6 in QFrame::event (this=0x2229f10, e=0x7fff86246350) at
widgets/qframe.cpp:557
#17 0x7f3328571a8b in QAbstractItemView::viewportEvent (this=0x2229f10,
event=0x7fff86246350) at itemviews/qabstractitemview.cpp:1619
#18 0x7f3327660507 in
QCoreApplicationPrivate::sendThroughObjectEventFilters (this=value optimized
out, receiver=0x23b7490, event=0x7fff86246350) at
kernel/qcoreapplication.cpp:847
#19 0x7f3328016fac in QApplicationPrivate::notify_helper (this=0x0c0,
receiver=0x23b7490, e=0x7fff86246350) at kernel/qapplication.cpp:4392
#20 0x7f332801caed in QApplication::notify (this=0x7fff862491a0,
receiver=0x23b7490, e=0x7fff86246350) at kernel/qapplication.cpp:4277
#21 0x7f3328d6a4d6 in KApplication::notify (this=0x7fff862491a0,
receiver=0x23b7490, event=0x7fff86246350) at
../../kdeui/kernel/kapplication.cpp:310
#22 0x7f3327660cdc in QCoreApplication::notifyInternal
(this=0x7fff862491a0, receiver=0x23b7490, event=0x7fff86246350) at
kernel/qcoreapplication.cpp:732
#23 0x7f332807367d in sendSpontaneousEvent (this=0x23b7c50, pdev=value
optimized out, rgn=..., offset=value optimized out, flags=value optimized
out, sharedPainter=0x0, backingStore=0x26364e0) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:218
#24 QWidgetPrivate::drawWidget (this=0x23b7c50, 

[Bug 240695] KMail Crash while startup with Akonadi error

2010-06-07 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=240695


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




--- Comment #3 from Raúl rasasi78 gmail com  2010-06-07 12:01:17 ---
Martin:

The bug is fixed in the svn repository for akonadi 1.3 branch and trunk. In
order to have it fixed I guess the easiest way would be waiting for a next
point release (1.3.2) for akonadi, so it will flow through your distro and you
will get it.

I don't know when this is planned though.

Regards,

-- 
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 235532] New: error to open kontact

2010-04-27 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=235532

   Summary: error to open kontact
   Product: kontact
   Version: 4.4.2
  Platform: Ubuntu Packages
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application: kontact (4.4.2)
KDE Platform Version: 4.4.2 (KDE 4.4.2)
Qt Version: 4.6.2
Operating System: Linux 2.6.31-20-generic x86_64
Distribution: Ubuntu 9.10

-- Information about the crash:
error to open kontact

error to open kontact

error to open kontact

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
The current source language is auto; currently c.
[KCrash Handler]
#5  Kontact::MainWindow::activateInitialPluginModule (this=0x2160310) at
../../../kontact/src/mainwindow.cpp:289
#6  0x004046f2 in KontactApp::newInstance (this=0x7fffb96288c0) at
../../../kontact/src/main.cpp:149
#7  0x7f4d6ce98356 in KUniqueApplicationAdaptor::newInstance
(this=0x1e8ce30, asn_id=value optimized out, args=...) at
../../kdeui/kernel/kuniqueapplication.cpp:454
#8  0x7f4d6ce98996 in KUniqueApplicationAdaptor::qt_metacall
(this=0x1e8ce30, _c=QMetaObject::InvokeMetaMethod, _id=37742720,
_a=0x7fffb9627a80) at ./kuniqueapplication_p.moc:81
#9  0x7f4d6990a25e in QDBusConnectionPrivate::deliverCall (this=value
optimized out, object=value optimized out, msg=value optimized out,
metaTypes=..., slotIdx=value optimized out)
at qdbusintegrator.cpp:904
#10 0x7f4d6990b52b in QDBusConnectionPrivate::activateCall (this=value
optimized out, object=0x1e8ce30, flags=337, msg=...) at
qdbusintegrator.cpp:816
#11 0x7f4d6990bfad in QDBusConnectionPrivate::activateObject (this=value
optimized out, node=value optimized out, msg=..., pathStartPos=value
optimized out) at qdbusintegrator.cpp:1364
#12 0x7f4d6990c248 in QDBusActivateObjectEvent::placeMetaCall
(this=0x2f16f50) at qdbusintegrator.cpp:1477
#13 0x7f4d6c4b5b49 in QObject::event (this=0x7fffb96288c0, e=0x2f16f50) at
kernel/qobject.cpp:1248
#14 0x7f4d6b86431d in QApplication::event (this=0x7fffb96288c0,
e=0x2f16f50) at kernel/qapplication.cpp:2353
#15 0x7f4d6b86012c in QApplicationPrivate::notify_helper (this=0x1de0f70,
receiver=0x7fffb96288c0, e=0x2f16f50) at kernel/qapplication.cpp:4300
#16 0x7f4d6b86671b in QApplication::notify (this=0x7fffb96288c0,
receiver=0x7fffb96288c0, e=0x2f16f50) at kernel/qapplication.cpp:4183
#17 0x7f4d6ce91076 in KApplication::notify (this=0x7fffb96288c0,
receiver=0x7fffb96288c0, event=0x2f16f50) at
../../kdeui/kernel/kapplication.cpp:302
#18 0x7f4d6c4a5e0c in QCoreApplication::notifyInternal
(this=0x7fffb96288c0, receiver=0x7fffb96288c0, event=0x2f16f50) at
kernel/qcoreapplication.cpp:704
#19 0x7f4d6c4a8587 in QCoreApplication::sendEvent (receiver=0x0,
event_type=value optimized out, data=0x1dad620) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:215
#20 QCoreApplicationPrivate::sendPostedEvents (receiver=0x0, event_type=value
optimized out, data=0x1dad620) at kernel/qcoreapplication.cpp:1345
#21 0x7f4d6c4cf7f3 in QCoreApplication::sendPostedEvents (s=value
optimized out) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:220
#22 postEventSourceDispatch (s=value optimized out) at
kernel/qeventdispatcher_glib.cpp:276
#23 0x7f4d63c40bce in g_main_dispatch (context=0x1de4a20) at
/build/buildd/glib2.0-2.22.3/glib/gmain.c:1960
#24 IA__g_main_context_dispatch (context=0x1de4a20) at
/build/buildd/glib2.0-2.22.3/glib/gmain.c:2513
#25 0x7f4d63c44598 in g_main_context_iterate (context=0x1de4a20,
block=value optimized out, dispatch=value optimized out, self=value
optimized out)
at /build/buildd/glib2.0-2.22.3/glib/gmain.c:2591
#26 0x7f4d63c446c0 in IA__g_main_context_iteration (context=0x1de4a20,
may_block=1) at /build/buildd/glib2.0-2.22.3/glib/gmain.c:2654
#27 0x7f4d6c4cf333 in QEventDispatcherGlib::processEvents (this=0x1dacd70,
flags=value optimized out) at kernel/qeventdispatcher_glib.cpp:412
#28 0x7f4d6b90ff0e in QGuiEventDispatcherGlib::processEvents
(this=0x2160310, flags=value optimized out) at
kernel/qguieventdispatcher_glib.cpp:204
#29 0x7f4d6c4a4732 in QEventLoop::processEvents (this=value optimized
out, flags=) at kernel/qeventloop.cpp:149
#30 0x7f4d6c4a4b0c in QEventLoop::exec (this=0x7fffb9628800, flags=) at
kernel/qeventloop.cpp:201
#31 0x7f4d6c4a884b in QCoreApplication::exec () at
kernel/qcoreapplication.cpp:981
#32 0x00403ece in main (argc=value optimized out, argv=value
optimized out) at ../../../kontact/src/main.cpp:224

This bug may be a duplicate of or related to bug 193514.

Possible duplicates by query: bug 234559, bug 234169, bug 233509, bug 231229,
bug 226815.

Reported using DrKonqi

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this 

[Bug 233509] New: error to reopen kontact aplication

2010-04-06 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=233509

   Summary: error to reopen kontact aplication
   Product: kontact
   Version: 4.4.2
  Platform: Ubuntu Packages
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application: kontact (4.4.2)
KDE Platform Version: 4.4.2 (KDE 4.4.2)
Qt Version: 4.6.2
Operating System: Linux 2.6.31-20-generic x86_64
Distribution: Ubuntu 9.10

-- Information about the crash:
error to reopen kontact aplication error to reopen kontact aplication

The crash can be reproduced some of the time.

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
The current source language is auto; currently c.
[KCrash Handler]
#5  Kontact::MainWindow::activateInitialPluginModule (this=0x1ae8eb0) at
../../../kontact/src/mainwindow.cpp:289
#6  0x004046f2 in KontactApp::newInstance (this=0x7fffaebcbeb0) at
../../../kontact/src/main.cpp:149
#7  0x7fea40355356 in KUniqueApplicationAdaptor::newInstance
(this=0x1a80ce0, asn_id=value optimized out, args=...) at
../../kdeui/kernel/kuniqueapplication.cpp:454
#8  0x7fea40355996 in KUniqueApplicationAdaptor::qt_metacall
(this=0x1a80ce0, _c=QMetaObject::InvokeMetaMethod, _id=33317504,
_a=0x7fffaebcb070) at ./kuniqueapplication_p.moc:81
#9  0x7fea3cdc725e in QDBusConnectionPrivate::deliverCall (this=value
optimized out, object=value optimized out, msg=value optimized out,
metaTypes=..., slotIdx=value optimized out)
at qdbusintegrator.cpp:904
#10 0x7fea3cdc852b in QDBusConnectionPrivate::activateCall (this=value
optimized out, object=0x1a80ce0, flags=337, msg=...) at
qdbusintegrator.cpp:816
#11 0x7fea3cdc8fad in QDBusConnectionPrivate::activateObject (this=value
optimized out, node=value optimized out, msg=..., pathStartPos=value
optimized out) at qdbusintegrator.cpp:1364
#12 0x7fea3cdc9248 in QDBusActivateObjectEvent::placeMetaCall
(this=0x21e5430) at qdbusintegrator.cpp:1477
#13 0x7fea3f972b49 in QObject::event (this=0x7fffaebcbeb0, e=0x21e5430) at
kernel/qobject.cpp:1248
#14 0x7fea3ed2131d in QApplication::event (this=0x7fffaebcbeb0,
e=0x21e5430) at kernel/qapplication.cpp:2353
#15 0x7fea3ed1d12c in QApplicationPrivate::notify_helper (this=0x1968bd0,
receiver=0x7fffaebcbeb0, e=0x21e5430) at kernel/qapplication.cpp:4300
#16 0x7fea3ed2371b in QApplication::notify (this=0x7fffaebcbeb0,
receiver=0x7fffaebcbeb0, e=0x21e5430) at kernel/qapplication.cpp:4183
#17 0x7fea4034e076 in KApplication::notify (this=0x7fffaebcbeb0,
receiver=0x7fffaebcbeb0, event=0x21e5430) at
../../kdeui/kernel/kapplication.cpp:302
#18 0x7fea3f962e0c in QCoreApplication::notifyInternal
(this=0x7fffaebcbeb0, receiver=0x7fffaebcbeb0, event=0x21e5430) at
kernel/qcoreapplication.cpp:704
#19 0x7fea3f965587 in QCoreApplication::sendEvent (receiver=0x0,
event_type=value optimized out, data=0x1935620) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:215
#20 QCoreApplicationPrivate::sendPostedEvents (receiver=0x0, event_type=value
optimized out, data=0x1935620) at kernel/qcoreapplication.cpp:1345
#21 0x7fea3f98c7f3 in QCoreApplication::sendPostedEvents (s=value
optimized out) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:220
#22 postEventSourceDispatch (s=value optimized out) at
kernel/qeventdispatcher_glib.cpp:276
#23 0x7fea370fdbce in g_main_dispatch (context=0x196d120) at
/build/buildd/glib2.0-2.22.3/glib/gmain.c:1960
#24 IA__g_main_context_dispatch (context=0x196d120) at
/build/buildd/glib2.0-2.22.3/glib/gmain.c:2513
#25 0x7fea37101598 in g_main_context_iterate (context=0x196d120,
block=value optimized out, dispatch=value optimized out, self=value
optimized out)
at /build/buildd/glib2.0-2.22.3/glib/gmain.c:2591
#26 0x7fea371016c0 in IA__g_main_context_iteration (context=0x196d120,
may_block=1) at /build/buildd/glib2.0-2.22.3/glib/gmain.c:2654
#27 0x7fea3f98c333 in QEventDispatcherGlib::processEvents (this=0x1934d70,
flags=value optimized out) at kernel/qeventdispatcher_glib.cpp:412
#28 0x7fea3edccf0e in QGuiEventDispatcherGlib::processEvents
(this=0x1ae8eb0, flags=value optimized out) at
kernel/qguieventdispatcher_glib.cpp:204
#29 0x7fea3f961732 in QEventLoop::processEvents (this=value optimized
out, flags=) at kernel/qeventloop.cpp:149
#30 0x7fea3f961b0c in QEventLoop::exec (this=0x7fffaebcbdf0, flags=) at
kernel/qeventloop.cpp:201
#31 0x7fea3f96584b in QCoreApplication::exec () at
kernel/qcoreapplication.cpp:981
#32 0x00403ece in main (argc=value optimized out, argv=value
optimized out) at ../../../kontact/src/main.cpp:224

This bug may be a duplicate of or related to bug 193514.

Possible duplicates by query: bug 231229, bug 226815, bug 223117, bug 222829,
bug 220999.

Reported using DrKonqi

-- 
Configure bugmail: 

[Bug 229828] New: error to open files adjuntos

2010-03-07 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=229828

   Summary: error to open files adjuntos
   Product: kontact
   Version: 4.4.1
  Platform: Ubuntu Packages
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application: kontact (4.4.1)
KDE Platform Version: 4.4.1 (KDE 4.4.1)
Qt Version: 4.6.2
Operating System: Linux 2.6.31-20-generic x86_64
Distribution: Ubuntu 9.10

-- Information about the crash:
ERROR TO open images to kmail

ERROR TO open images to kmail

The crash can be reproduced some of the time.

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
The current source language is auto; currently c.
[KCrash Handler]
#5  0x7f2ab96ac103 in KMHandleAttachmentCommand::slotStart (this=0x4359080)
at ../../kmail/kmcommands.cpp:3011
#6  0x7f2ab96ae4d6 in KMHandleAttachmentCommand::qt_metacall
(this=0x4359080, _c=QMetaObject::InvokeMetaMethod, _id=value optimized out,
_a=0x7fffb42d8550) at ./kmcommands.moc:2571
#7  0x7f2ad1c16c0f in QMetaObject::activate (sender=0x2c1dcc0, m=value
optimized out, local_signal_index=value optimized out,
argv=0xffd4b664) at kernel/qobject.cpp:3293
#8  0x7f2ad1c1e3ff in QSingleShotTimer::timerEvent (this=0x2c1dcc0) at
kernel/qtimer.cpp:308
#9  0x7f2ad1c13863 in QObject::event (this=0x2c1dcc0, e=0x7fffb42d8cb0) at
kernel/qobject.cpp:1212
#10 0x7f2ad0fbe12c in QApplicationPrivate::notify_helper (this=0x1378630,
receiver=0x2c1dcc0, e=0x7fffb42d8cb0) at kernel/qapplication.cpp:4300
#11 0x7f2ad0fc471b in QApplication::notify (this=0x7fffb42d9010,
receiver=0x2c1dcc0, e=0x7fffb42d8cb0) at kernel/qapplication.cpp:4183
#12 0x7f2ad25f3d76 in KApplication::notify (this=0x7fffb42d9010,
receiver=0x2c1dcc0, event=0x7fffb42d8cb0) at
../../kdeui/kernel/kapplication.cpp:302
#13 0x7f2ad1c03e0c in QCoreApplication::notifyInternal
(this=0x7fffb42d9010, receiver=0x2c1dcc0, event=0x7fffb42d8cb0) at
kernel/qcoreapplication.cpp:704
#14 0x7f2ad1c30a62 in QCoreApplication::sendEvent (this=0x137d760) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:215
#15 QTimerInfoList::activateTimers (this=0x137d760) at
kernel/qeventdispatcher_unix.cpp:603
#16 0x7f2ad1c2d644 in timerSourceDispatch (source=value optimized out) at
kernel/qeventdispatcher_glib.cpp:184
#17 0x7f2ac9193bce in g_main_dispatch (context=0x137c220) at
/build/buildd/glib2.0-2.22.3/glib/gmain.c:1960
#18 IA__g_main_context_dispatch (context=0x137c220) at
/build/buildd/glib2.0-2.22.3/glib/gmain.c:2513
#19 0x7f2ac9197598 in g_main_context_iterate (context=0x137c220,
block=value optimized out, dispatch=value optimized out, self=value
optimized out)
at /build/buildd/glib2.0-2.22.3/glib/gmain.c:2591
#20 0x7f2ac91976c0 in IA__g_main_context_iteration (context=0x137c220,
may_block=1) at /build/buildd/glib2.0-2.22.3/glib/gmain.c:2654
#21 0x7f2ad1c2d333 in QEventDispatcherGlib::processEvents (this=0x1344df0,
flags=value optimized out) at kernel/qeventdispatcher_glib.cpp:412
#22 0x7f2ad106df0e in QGuiEventDispatcherGlib::processEvents
(this=0x4359080, flags=value optimized out) at
kernel/qguieventdispatcher_glib.cpp:204
#23 0x7f2ad1c02732 in QEventLoop::processEvents (this=value optimized
out, flags=) at kernel/qeventloop.cpp:149
#24 0x7f2ad1c02b0c in QEventLoop::exec (this=0x7fffb42d8f50, flags=) at
kernel/qeventloop.cpp:201
#25 0x7f2ad1c0684b in QCoreApplication::exec () at
kernel/qcoreapplication.cpp:981
#26 0x00403ece in main (argc=value optimized out, argv=value
optimized out) at ../../../kontact/src/main.cpp:224

Possible duplicates by query: bug 225959, bug 225460, bug 219521, bug 216408,
bug 214797.

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 219341] New: error to open kontact

2009-12-19 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=219341

   Summary: error to open kontact
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.4
KDE Version: 4.3.4 (KDE 4.3.4)
Qt Version: 4.5.2
Operating System: Linux 2.6.31-16-generic x86_64
Distribution: Ubuntu 9.10

What I was doing when the application crashed:
error to open kontact

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
The current source language is auto; currently c.
[KCrash Handler]
#5  Kontact::MainWindow::activatePluginModule (this=0x904e30) at
../../../kontact/src/mainwindow.cpp:303
#6  0x00404772 in KontactApp::newInstance (this=0x7fff6169d870) at
../../../kontact/src/main.cpp:147
#7  0x7ff974f54cb6 in KUniqueApplicationAdaptor::newInstance
(this=0x922520, asn_id=value optimized out, args=...) at
../../kdeui/kernel/kuniqueapplication.cpp:459
#8  0x7ff974f552a6 in KUniqueApplicationAdaptor::qt_metacall
(this=0x922520, _c=QMetaObject::InvokeMetaMethod, _id=12662528,
_a=0x7fff6169cba0) at ./kuniqueapplication_p.moc:75
#9  0x7ff971b22ad4 in QDBusConnectionPrivate::deliverCall (this=value
optimized out, object=value optimized out, msg=value optimized out,
metaTypes=..., slotIdx=value optimized out)
at qdbusintegrator.cpp:891
#10 0x7ff971b23cc3 in QDBusConnectionPrivate::activateCall (this=value
optimized out, object=0x922520, flags=337, msg=...) at qdbusintegrator.cpp:803
#11 0x7ff971b24547 in QDBusConnectionPrivate::activateObject (this=value
optimized out, node=..., msg=value optimized out, pathStartPos=value
optimized out) at qdbusintegrator.cpp:1347
#12 0x7ff971b247c8 in QDBusActivateObjectEvent::placeMetaCall
(this=0x1903910) at qdbusintegrator.cpp:1464
#13 0x7ff973a020f9 in QObject::event (this=0x7fff6169d870, e=0x1903910) at
kernel/qobject.cpp:
#14 0x7ff974320b4d in QApplication::event (this=0x7fff6169d870,
e=0x1903910) at kernel/qapplication.cpp:2317
#15 0x7ff974316efc in QApplicationPrivate::notify_helper (this=0x86e970,
receiver=0x7fff6169d870, e=0x1903910) at kernel/qapplication.cpp:4056
#16 0x7ff97431e1ce in QApplication::notify (this=0x7fff6169d870,
receiver=0x7fff6169d870, e=0x1903910) at kernel/qapplication.cpp:4021
#17 0x7ff974f4de56 in KApplication::notify (this=0x7fff6169d870,
receiver=0x7fff6169d870, event=0x1903910) at
../../kdeui/kernel/kapplication.cpp:302
#18 0x7ff9739f2c2c in QCoreApplication::notifyInternal
(this=0x7fff6169d870, receiver=0x7fff6169d870, event=0x1903910) at
kernel/qcoreapplication.cpp:610
#19 0x7ff9739f380a in QCoreApplication::sendEvent (receiver=0x0,
event_type=value optimized out, data=0x833080) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:213
#20 QCoreApplicationPrivate::sendPostedEvents (receiver=0x0, event_type=value
optimized out, data=0x833080) at kernel/qcoreapplication.cpp:1247
#21 0x7ff973a1b533 in QCoreApplication::sendPostedEvents (s=value
optimized out) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:218
#22 postEventSourceDispatch (s=value optimized out) at
kernel/qeventdispatcher_glib.cpp:210
#23 0x7ff96d26cbbe in g_main_dispatch (context=0x85d400) at
/build/buildd/glib2.0-2.22.2/glib/gmain.c:1960
#24 IA__g_main_context_dispatch (context=0x85d400) at
/build/buildd/glib2.0-2.22.2/glib/gmain.c:2513
#25 0x7ff96d270588 in g_main_context_iterate (context=0x85d400,
block=value optimized out, dispatch=value optimized out, self=value
optimized out)
at /build/buildd/glib2.0-2.22.2/glib/gmain.c:2591
#26 0x7ff96d2706b0 in IA__g_main_context_iteration (context=0x85d400,
may_block=1) at /build/buildd/glib2.0-2.22.2/glib/gmain.c:2654
#27 0x7ff973a1b1a6 in QEventDispatcherGlib::processEvents (this=0x832cb0,
flags=value optimized out) at kernel/qeventdispatcher_glib.cpp:327
#28 0x7ff9743ab4be in QGuiEventDispatcherGlib::processEvents
(this=0x904e30, flags=value optimized out) at
kernel/qguieventdispatcher_glib.cpp:202
#29 0x7ff9739f1532 in QEventLoop::processEvents (this=value optimized
out, flags=) at kernel/qeventloop.cpp:149
#30 0x7ff9739f1904 in QEventLoop::exec (this=0x7fff6169d7b0, flags=) at
kernel/qeventloop.cpp:201
#31 0x7ff9739f3ab9 in QCoreApplication::exec () at
kernel/qcoreapplication.cpp:888
#32 0x00403f47 in main (argc=value optimized out, argv=value
optimized out) at ../../../kontact/src/main.cpp:218

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

[Bug 217939] New: error to open kontact

2009-12-08 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=217939

   Summary: error to open kontact
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.4
KDE Version: 4.3.4 (KDE 4.3.4)
Qt Version: 4.5.2
Operating System: Linux 2.6.31-16-generic x86_64
Distribution: Ubuntu 9.10

What I was doing when the application crashed:
error to open kontact

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
The current source language is auto; currently c.
[KCrash Handler]
#5  Kontact::MainWindow::activatePluginModule (this=0x1a11b20) at
../../../kontact/src/mainwindow.cpp:303
#6  0x00404772 in KontactApp::newInstance (this=0x75f8c8b0) at
../../../kontact/src/main.cpp:147
#7  0x7f1b4cdfccb6 in KUniqueApplicationAdaptor::newInstance
(this=0x1acd530, asn_id=value optimized out, args=...) at
../../kdeui/kernel/kuniqueapplication.cpp:459
#8  0x7f1b4cdfd2a6 in KUniqueApplicationAdaptor::qt_metacall
(this=0x1acd530, _c=QMetaObject::InvokeMetaMethod, _id=32370736,
_a=0x75f8bbe0) at ./kuniqueapplication_p.moc:75
#9  0x7f1b499caad4 in QDBusConnectionPrivate::deliverCall (this=value
optimized out, object=value optimized out, msg=value optimized out,
metaTypes=..., slotIdx=value optimized out)
at qdbusintegrator.cpp:891
#10 0x7f1b499cbcc3 in QDBusConnectionPrivate::activateCall (this=value
optimized out, object=0x1acd530, flags=337, msg=...) at
qdbusintegrator.cpp:803
#11 0x7f1b499cc547 in QDBusConnectionPrivate::activateObject (this=value
optimized out, node=..., msg=value optimized out, pathStartPos=value
optimized out) at qdbusintegrator.cpp:1347
#12 0x7f1b499cc7c8 in QDBusActivateObjectEvent::placeMetaCall
(this=0x2157770) at qdbusintegrator.cpp:1464
#13 0x7f1b4b8aa0f9 in QObject::event (this=0x75f8c8b0, e=0x2157770) at
kernel/qobject.cpp:
#14 0x7f1b4c1c8b4d in QApplication::event (this=0x75f8c8b0,
e=0x2157770) at kernel/qapplication.cpp:2317
#15 0x7f1b4c1beefc in QApplicationPrivate::notify_helper (this=0x1a07f10,
receiver=0x75f8c8b0, e=0x2157770) at kernel/qapplication.cpp:4056
#16 0x7f1b4c1c61ce in QApplication::notify (this=0x75f8c8b0,
receiver=0x75f8c8b0, e=0x2157770) at kernel/qapplication.cpp:4021
#17 0x7f1b4cdf5e56 in KApplication::notify (this=0x75f8c8b0,
receiver=0x75f8c8b0, event=0x2157770) at
../../kdeui/kernel/kapplication.cpp:302
#18 0x7f1b4b89ac2c in QCoreApplication::notifyInternal
(this=0x75f8c8b0, receiver=0x75f8c8b0, event=0x2157770) at
kernel/qcoreapplication.cpp:610
#19 0x7f1b4b89b80a in QCoreApplication::sendEvent (receiver=0x0,
event_type=value optimized out, data=0x19e0080) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:213
#20 QCoreApplicationPrivate::sendPostedEvents (receiver=0x0, event_type=value
optimized out, data=0x19e0080) at kernel/qcoreapplication.cpp:1247
#21 0x7f1b4b8c3533 in QCoreApplication::sendPostedEvents (s=value
optimized out) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:218
#22 postEventSourceDispatch (s=value optimized out) at
kernel/qeventdispatcher_glib.cpp:210
#23 0x7f1b45114bbe in g_main_dispatch (context=0x1a09620) at
/build/buildd/glib2.0-2.22.2/glib/gmain.c:1960
#24 IA__g_main_context_dispatch (context=0x1a09620) at
/build/buildd/glib2.0-2.22.2/glib/gmain.c:2513
#25 0x7f1b45118588 in g_main_context_iterate (context=0x1a09620,
block=value optimized out, dispatch=value optimized out, self=value
optimized out)
at /build/buildd/glib2.0-2.22.2/glib/gmain.c:2591
#26 0x7f1b451186b0 in IA__g_main_context_iteration (context=0x1a09620,
may_block=1) at /build/buildd/glib2.0-2.22.2/glib/gmain.c:2654
#27 0x7f1b4b8c31a6 in QEventDispatcherGlib::processEvents (this=0x19dfcb0,
flags=value optimized out) at kernel/qeventdispatcher_glib.cpp:327
#28 0x7f1b4c2534be in QGuiEventDispatcherGlib::processEvents
(this=0x1a11b20, flags=value optimized out) at
kernel/qguieventdispatcher_glib.cpp:202
#29 0x7f1b4b899532 in QEventLoop::processEvents (this=value optimized
out, flags=) at kernel/qeventloop.cpp:149
#30 0x7f1b4b899904 in QEventLoop::exec (this=0x75f8c7f0, flags=) at
kernel/qeventloop.cpp:201
#31 0x7f1b4b89bab9 in QCoreApplication::exec () at
kernel/qcoreapplication.cpp:888
#32 0x00403f47 in main (argc=value optimized out, argv=value
optimized out) at ../../../kontact/src/main.cpp:218

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

[Bug 217386] New: kontact crash when i add new rss to akregator desde firefox

2009-12-04 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=217386

   Summary: kontact crash when i add new rss to akregator desde
firefox
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.4
KDE Version: 4.3.4 (KDE 4.3.4)
Qt Version: 4.5.2
Operating System: Linux 2.6.31-15-generic x86_64
Distribution: Ubuntu 9.10

What I was doing when the application crashed:
kontact crash when i add new rss to akregator desde firefox

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
The current source language is auto; currently c.
[KCrash Handler]
#5  0x in ?? ()
#6  0x7f6e48dd604b in QWidget::show (this=0x2566970) at
/usr/include/qt4/QtGui/qwidget.h:473
#7  Kontact::UniqueAppHandler::newInstance (this=0x2566970) at
../../kontactinterfaces/uniqueapphandler.cpp:137
#8  0x7f6e32368977 in AkregatorUniqueAppHandler::newInstance
(this=0x2566970) at
../../../../kontact/plugins/akregator/akregator_plugin.cpp:162
#9  0x7f6e48dd60f9 in Kontact::UniqueAppHandler::newInstance
(this=0x2566970, asn_id=value optimized out, args=...) at
../../kontactinterfaces/uniqueapphandler.cpp:128
#10 0x7f6e48dd6164 in Kontact::UniqueAppHandler::qt_metacall
(this=0x2566970, _c=QMetaObject::InvokeMetaMethod, _id=1195475088,
_a=0x7fff929804f0) at ./uniqueapphandler.moc:73
#11 0x7f6e4525aad4 in QDBusConnectionPrivate::deliverCall (this=value
optimized out, object=value optimized out, msg=value optimized out,
metaTypes=..., slotIdx=value optimized out)
at qdbusintegrator.cpp:891
#12 0x7f6e4525bc69 in QDBusConnectionPrivate::activateCall (this=value
optimized out, object=0x2566970, flags=272, msg=...) at
qdbusintegrator.cpp:796
#13 0x7f6e4525c2d5 in QDBusConnectionPrivate::activateObject (this=value
optimized out, node=..., msg=value optimized out, pathStartPos=value
optimized out) at qdbusintegrator.cpp:1370
#14 0x7f6e4525c7c8 in QDBusActivateObjectEvent::placeMetaCall
(this=0x274c550) at qdbusintegrator.cpp:1464
#15 0x7f6e4713a0f9 in QObject::event (this=0x2566970, e=0x274c550) at
kernel/qobject.cpp:
#16 0x7f6e47a4eefc in QApplicationPrivate::notify_helper (this=0x20c6910,
receiver=0x2566970, e=0x274c550) at kernel/qapplication.cpp:4056
#17 0x7f6e47a561ce in QApplication::notify (this=0x7fff92981100,
receiver=0x2566970, e=0x274c550) at kernel/qapplication.cpp:4021
#18 0x7f6e48685e56 in KApplication::notify (this=0x7fff92981100,
receiver=0x2566970, event=0x274c550) at ../../kdeui/kernel/kapplication.cpp:302
#19 0x7f6e4712ac2c in QCoreApplication::notifyInternal
(this=0x7fff92981100, receiver=0x2566970, event=0x274c550) at
kernel/qcoreapplication.cpp:610
#20 0x7f6e4712b80a in QCoreApplication::sendEvent (receiver=0x0,
event_type=value optimized out, data=0x208a080) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:213
#21 QCoreApplicationPrivate::sendPostedEvents (receiver=0x0, event_type=value
optimized out, data=0x208a080) at kernel/qcoreapplication.cpp:1247
#22 0x7f6e47153533 in QCoreApplication::sendPostedEvents (s=value
optimized out) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:218
#23 postEventSourceDispatch (s=value optimized out) at
kernel/qeventdispatcher_glib.cpp:210
#24 0x7f6e409a4bbe in g_main_dispatch (context=0x20b3d20) at
/build/buildd/glib2.0-2.22.2/glib/gmain.c:1960
#25 IA__g_main_context_dispatch (context=0x20b3d20) at
/build/buildd/glib2.0-2.22.2/glib/gmain.c:2513
#26 0x7f6e409a8588 in g_main_context_iterate (context=0x20b3d20,
block=value optimized out, dispatch=value optimized out, self=value
optimized out)
at /build/buildd/glib2.0-2.22.2/glib/gmain.c:2591
#27 0x7f6e409a86b0 in IA__g_main_context_iteration (context=0x20b3d20,
may_block=1) at /build/buildd/glib2.0-2.22.2/glib/gmain.c:2654
#28 0x7f6e471531a6 in QEventDispatcherGlib::processEvents (this=0x2089cb0,
flags=value optimized out) at kernel/qeventdispatcher_glib.cpp:327
#29 0x7f6e47ae34be in QGuiEventDispatcherGlib::processEvents
(this=0x21590b0, flags=value optimized out) at
kernel/qguieventdispatcher_glib.cpp:202
#30 0x7f6e47129532 in QEventLoop::processEvents (this=value optimized
out, flags=) at kernel/qeventloop.cpp:149
#31 0x7f6e47129904 in QEventLoop::exec (this=0x7fff92981040, flags=) at
kernel/qeventloop.cpp:201
#32 0x7f6e4712bab9 in QCoreApplication::exec () at
kernel/qcoreapplication.cpp:888
#33 0x00403f47 in main (argc=value optimized out, argv=value
optimized out) at ../../../kontact/src/main.cpp:218

Reported using DrKonqi

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: 

[Bug 216591] New: kontact fails to update calendar from google calendar

2009-11-28 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=216591

   Summary: kontact fails to update calendar from google calendar
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.3
KDE Version: 4.3.3 (KDE 4.3.3)
Qt Version: 4.5.2
Operating System: Linux 2.6.31-15-generic x86_64
Distribution: Ubuntu 9.10

What I was doing when the application crashed:
I was in firefox deleting a gmail calendar entries, and soon failed kontact

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
The current source language is auto; currently c.
[KCrash Handler]
#5  0x7f02328cb3b8 in KOrg::IncidenceMonthItem::realStartDate
(this=0x2d86320) at ../../korganizer/views/monthview/monthitem.cpp:327
#6  0x7f02328c8fac in KOrg::MonthView::reloadIncidences (this=0x3007060) at
../../korganizer/views/monthview/monthview.cpp:327
#7  0x7f02328ca11f in KOrg::MonthView::setStartDate (this=0x3007060,
start=value optimized out) at
../../korganizer/views/monthview/monthview.cpp:293
#8  0x7f02328ca17e in KOrg::MonthView::showDates (this=0x3007060,
start=..., end=value optimized out) at
../../korganizer/views/monthview/monthview.cpp:280
#9  0x7f023290caa6 in KOViewManager::updateView (this=0x1e77dc0, start=...,
end=...) at ../../korganizer/koviewmanager.cpp:215
#10 0x7f02328fc4aa in CalendarView::updateView (this=0x1e79610, start=...,
end=..., updateTodos=false) at ../../korganizer/calendarview.cpp:801
#11 0x7f02328fdf91 in CalendarView::updateView (this=0x1e79610) at
../../korganizer/calendarview.cpp:810
#12 0x7f023290b618 in CalendarView::qt_metacall (this=0x1e79610,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=0x7fff01fbe560)
at ./calendarview.moc:571
#13 0x7f0251745ddc in QMetaObject::activate (sender=0x1db18d0,
from_signal_index=value optimized out, to_signal_index=value optimized out,
argv=0x0) at kernel/qobject.cpp:3113
#14 0x7f024e78398e in KCal::Calendar::qt_metacall (this=0x1db18d0,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=value
optimized out) at ./calendar.moc:73
#15 0x7f024e7e10e0 in KCal::CalendarResources::qt_metacall
(this=0x7fff01fbddf0, _c=72685424, _id=851359489, _a=0x0) at
./calendarresources.moc:76
#16 0x7f0251745ddc in QMetaObject::activate (sender=0x1e7e150,
from_signal_index=value optimized out, to_signal_index=value optimized out,
argv=0x0) at kernel/qobject.cpp:3113
#17 0x7f024e7d090f in KCal::ResourceCalendar::resourceChanged
(this=0x7fff01fbddf0, _t1=0x1e7e150) at ./resourcecalendar.moc:117
#18 0x7f0232e164e6 in KCal::ResourceRemote::doLoad (this=0x1e7e150,
syncCache=value optimized out) at
../../../kresources/remote/resourceremote.cpp:193
#19 0x7f024e7dc83e in KCal::ResourceCached::load (this=0x1e7e150,
action=KCal::ResourceCached::SyncCache) at ../../kcal/resourcecached.cpp:409
#20 0x7f024e7dcd66 in KCal::ResourceCached::slotReload (this=0x1e7e150) at
../../kcal/resourcecached.cpp:808
#21 0x7f024e7dd70e in KCal::ResourceCached::qt_metacall (this=0x1e7e150,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=value
optimized out) at ./resourcecached.moc:71
#22 0x7f0232e16020 in KCal::ResourceRemote::qt_metacall
(this=0x7fff01fbddf0, _c=72685424, _id=851359489, _a=0x0) at
./resourceremote.moc:65
#23 0x7f0251745ddc in QMetaObject::activate (sender=0x1e80b40,
from_signal_index=value optimized out, to_signal_index=value optimized out,
argv=0x0) at kernel/qobject.cpp:3113
#24 0x7f025173fd83 in QObject::event (this=0x1e80b40, e=0x4551770) at
kernel/qobject.cpp:1075
#25 0x7f0252050efc in QApplicationPrivate::notify_helper (this=0xf0bed0,
receiver=0x1e80b40, e=0x7fff01fbf080) at kernel/qapplication.cpp:4056
#26 0x7f02520581ce in QApplication::notify (this=0x7fff01fbf3e0,
receiver=0x1e80b40, e=0x7fff01fbf080) at kernel/qapplication.cpp:4021
#27 0x7f0252c87e56 in KApplication::notify (this=0x7fff01fbf3e0,
receiver=0x1e80b40, event=0x7fff01fbf080) at
../../kdeui/kernel/kapplication.cpp:302
#28 0x7f0251730c2c in QCoreApplication::notifyInternal
(this=0x7fff01fbf3e0, receiver=0x1e80b40, event=0x7fff01fbf080) at
kernel/qcoreapplication.cpp:610
#29 0x7f025175b862 in QCoreApplication::sendEvent (this=0xef9be0) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:213
#30 QTimerInfoList::activateTimers (this=0xef9be0) at
kernel/qeventdispatcher_unix.cpp:572
#31 0x7f025175925d in timerSourceDispatch (source=value optimized out) at
kernel/qeventdispatcher_glib.cpp:165
#32 0x7f024afabbbe in g_main_dispatch (context=0xef8d20) at
/build/buildd/glib2.0-2.22.2/glib/gmain.c:1960
#33 IA__g_main_context_dispatch (context=0xef8d20) at

[Bug 216462] New: error to edit aplication kontact

2009-11-27 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=216462

   Summary: error to edit aplication kontact
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.3
KDE Version: 4.3.3 (KDE 4.3.3)
Qt Version: 4.5.2
Operating System: Linux 2.6.31-15-generic x86_64
Distribution: Ubuntu 9.10

What I was doing when the application crashed:
kontact crash when i move I move the toolbar Site

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[Current thread is 1 (Thread 0x7fd119100750 (LWP 18142))]

Thread 3 (Thread 0x7fd0f69c4910 (LWP 18149)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:220
#1  0x7fd116d66462 in QWaitConditionPrivate::wait (this=value optimized
out, mutex=0x28930f0, time=3) at thread/qwaitcondition_unix.cpp:85
#2  QWaitCondition::wait (this=value optimized out, mutex=0x28930f0,
time=3) at thread/qwaitcondition_unix.cpp:159
#3  0x7fd116d5c4f2 in QThreadPoolThread::run (this=value optimized out)
at concurrent/qthreadpool.cpp:140
#4  0x7fd116d65445 in QThreadPrivate::start (arg=0x277be30) at
thread/qthread_unix.cpp:188
#5  0x7fd110475a04 in start_thread (arg=value optimized out) at
pthread_create.c:300
#6  0x7fd1167677bd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#7  0x in ?? ()

Thread 2 (Thread 0x7fd0f5dba910 (LWP 18153)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:220
#1  0x7fd116d66462 in QWaitConditionPrivate::wait (this=value optimized
out, mutex=0x28930f0, time=3) at thread/qwaitcondition_unix.cpp:85
#2  QWaitCondition::wait (this=value optimized out, mutex=0x28930f0,
time=3) at thread/qwaitcondition_unix.cpp:159
#3  0x7fd116d5c4f2 in QThreadPoolThread::run (this=value optimized out)
at concurrent/qthreadpool.cpp:140
#4  0x7fd116d65445 in QThreadPrivate::start (arg=0x2a92e10) at
thread/qthread_unix.cpp:188
#5  0x7fd110475a04 in start_thread (arg=value optimized out) at
pthread_create.c:300
#6  0x7fd1167677bd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#7  0x in ?? ()
The current source language is auto; currently asm.

Thread 1 (Thread 0x7fd119100750 (LWP 18142)):
[KCrash Handler]
#5  0x0030 in ?? ()
#6  0x7fd117b3160a in fixToolBarOrientation (item=0x2f3ab00, dockPos=2) at
widgets/qmainwindowlayout.cpp:1483
#7  0x7fd117b38d85 in QMainWindowLayout::unplug (this=0x1b37f40,
widget=0x1f994c0) at widgets/qmainwindowlayout.cpp:1809
#8  0x7fd117b97fd2 in QToolBarPrivate::startDrag (this=0x1f99880,
moving=false) at widgets/qtoolbar.cpp:233
#9  0x7fd117b982c2 in QToolBarPrivate::mouseMoveEvent (this=0x1f99880,
event=0x7fff03479000) at widgets/qtoolbar.cpp:352
#10 0x7fd117b98768 in QToolBar::event (this=0x1f994c0, event=0x2) at
widgets/qtoolbar.cpp:1153
#11 0x7fd11776befc in QApplicationPrivate::notify_helper (this=0x1a3c460,
receiver=0x1f994c0, e=0x7fff03479000) at kernel/qapplication.cpp:4056
#12 0x7fd117773011 in QApplication::notify (this=value optimized out,
receiver=0x1f994c0, e=0x7fff03479000) at kernel/qapplication.cpp:3758
#13 0x7fd1183a2e56 in KApplication::notify (this=0x7fff0347af20,
receiver=0x1f994c0, event=0x7fff03479000) at
../../kdeui/kernel/kapplication.cpp:302
#14 0x7fd116e4bc2c in QCoreApplication::notifyInternal
(this=0x7fff0347af20, receiver=0x1f994c0, event=0x7fff03479000) at
kernel/qcoreapplication.cpp:610
#15 0x7fd1177728e0 in QCoreApplication::sendSpontaneousEvent
(receiver=0x1f994c0, event=0x7fff03479000, alienWidget=0x1bfdb10,
nativeWidget=0x1b37b90, buttonDown=value optimized out, 
lastMouseReceiver=value optimized out) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:216
#16 QApplicationPrivate::sendMouseEvent (receiver=0x1f994c0,
event=0x7fff03479000, alienWidget=0x1bfdb10, nativeWidget=0x1b37b90,
buttonDown=value optimized out, 
lastMouseReceiver=value optimized out) at kernel/qapplication.cpp:2924
#17 0x7fd1177d8a0e in QETWidget::translateMouseEvent (this=0x1b37b90,
event=value optimized out) at kernel/qapplication_x11.cpp:4409
#18 0x7fd1177d7aa9 in QApplication::x11ProcessEvent (this=value optimized
out, event=0x7fff0347ab30) at kernel/qapplication_x11.cpp:3550
#19 0x7fd117800d0c in x11EventSourceDispatch (s=value optimized out,
callback=value optimized out, user_data=value optimized out) at
kernel/qguieventdispatcher_glib.cpp:146
#20 0x7fd1106c6bbe in g_main_dispatch (context=0x1a2c120) at
/build/buildd/glib2.0-2.22.2/glib/gmain.c:1960
#21 IA__g_main_context_dispatch (context=0x1a2c120) at

[Bug 216191] New: error to manipulate akregator

2009-11-25 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=216191

   Summary: error to manipulate akregator
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.3
KDE Version: 4.3.3 (KDE 4.3.3)
Qt Version: 4.5.2
Operating System: Linux 2.6.31-15-generic x86_64
Distribution: Ubuntu 9.10

What I was doing when the application crashed:
error to download wallpapers of kdelook in akregator

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[Current thread is 1 (Thread 0x7fc131512750 (LWP 2459))]

Thread 2 (Thread 0x7fc10e14c910 (LWP 4703)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:220
#1  0x7fc12f178462 in QWaitConditionPrivate::wait (this=value optimized
out, mutex=0x22d91c0, time=3) at thread/qwaitcondition_unix.cpp:85
#2  QWaitCondition::wait (this=value optimized out, mutex=0x22d91c0,
time=3) at thread/qwaitcondition_unix.cpp:159
#3  0x7fc12f16e4f2 in QThreadPoolThread::run (this=value optimized out)
at concurrent/qthreadpool.cpp:140
#4  0x7fc12f177445 in QThreadPrivate::start (arg=0x1891270) at
thread/qthread_unix.cpp:188
#5  0x7fc128887a04 in start_thread (arg=value optimized out) at
pthread_create.c:300
#6  0x7fc12eb797bd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#7  0x in ?? ()

Thread 1 (Thread 0x7fc131512750 (LWP 2459)):
[KCrash Handler]
#5  QWidget::internalWinId (this=0x2c67ed0) at
../../include/QtGui/../../src/gui/kernel/qwidget.h:234
#6  QWidget::effectiveWinId (this=0x2c67ed0) at kernel/qwidget.cpp:2223
#7  0x7fc12fc033f1 in qt_x11_enforce_cursor (w=0x43e15f0, force=false) at
kernel/qwidget_x11.cpp:306
#8  0x7fc12fc035dd in QWidgetPrivate::setCursor_sys (this=value optimized
out) at kernel/qwidget_x11.cpp:1241
#9  0x7fc12fbcbe9a in QWidget::setCursor (this=0x43e15f0, cursor=...) at
kernel/qwidget.cpp:4623
#10 0x7fc10aee5f41 in Gwenview::ScrollTool::toolActivated() () from
/usr/lib/libgwenviewlib.so.4
#11 0x7fc10aed3023 in
Gwenview::ImageView::setCurrentTool(Gwenview::AbstractImageViewTool*) () from
/usr/lib/libgwenviewlib.so.4
#12 0x7fc10aebe3ec in
Gwenview::ImageViewAdapter::ImageViewAdapter(QWidget*) () from
/usr/lib/libgwenviewlib.so.4
#13 0x7fc10aeba578 in Gwenview::DocumentView::createAdapterForDocument() ()
from /usr/lib/libgwenviewlib.so.4
#14 0x7fc10aebab5a in Gwenview::DocumentView::finishOpenUrl() () from
/usr/lib/libgwenviewlib.so.4
#15 0x7fc10aebae35 in Gwenview::DocumentView::openUrl(KUrl const) () from
/usr/lib/libgwenviewlib.so.4
#16 0x7fc10b134fab in ?? () from /usr/lib/kde4/gvpart.so
#17 0x7fc10c5f38af in ?? () from /usr/lib/kde4/akregatorpart.so
#18 0x7fc10c5efbe5 in ?? () from /usr/lib/kde4/akregatorpart.so
#19 0x7fc10c5f1b6f in ?? () from /usr/lib/kde4/akregatorpart.so
#20 0x7fc12f272ddc in QMetaObject::activate (sender=0x296f6c0,
from_signal_index=value optimized out, to_signal_index=value optimized out,
argv=0x33f1850) at kernel/qobject.cpp:3113
#21 0x7fc10c5dfaf2 in ?? () from /usr/lib/kde4/akregatorpart.so
#22 0x7fc10c5dfbf8 in ?? () from /usr/lib/kde4/akregatorpart.so
#23 0x7fc12d7482b2 in KRun::mimeTypeDetermined (this=0x2c67ed0,
mimeType=...) at ../../kio/kio/krun.cpp:1360
#24 0x7fc12e888275 in KParts::BrowserRun::slotBrowserMimetype (this=value
optimized out, _job=value optimized out, type=value optimized out) at
../../kparts/browserrun.cpp:230
#25 0x7fc12e88a9c9 in KParts::BrowserRun::qt_metacall (this=0x296f6c0,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=0x7fffd4dee990)
at ./browserrun.moc:74
#26 0x7fc10c5dfb20 in ?? () from /usr/lib/kde4/akregatorpart.so
#27 0x7fc12f272ddc in QMetaObject::activate (sender=0x4d1bae0,
from_signal_index=value optimized out, to_signal_index=value optimized out,
argv=0x33f1850) at kernel/qobject.cpp:3113
#28 0x7fc12d6cc267 in KIO::TransferJob::mimetype (this=0x2c67ed0,
_t1=0x4d1bae0, _t2=value optimized out) at ./jobclasses.moc:392
#29 0x7fc12d6d1c66 in KIO::TransferJob::qt_metacall (this=0x4d1bae0,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=0x7fffd4deead0)
at ./jobclasses.moc:346
#30 0x7fc12f272ddc in QMetaObject::activate (sender=0x3356f70,
from_signal_index=value optimized out, to_signal_index=value optimized out,
argv=0x33f1850) at kernel/qobject.cpp:3113
#31 0x7fc12d78fd65 in KIO::SlaveInterface::mimeType (this=0x2c67ed0,
_t1=value optimized out) at ./slaveinterface.moc:267
#32 0x7fc12d7935e6 in KIO::SlaveInterface::dispatch (this=0x3356f70,
_cmd=21, rawdata=...) at ../../kio/kio/slaveinterface.cpp:270
#33 0x7fc12d7903e3 in 

[Bug 215685] New: error to close kontact

2009-11-22 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=215685

   Summary: error to close kontact
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.3
KDE Version: 4.3.3 (KDE 4.3.3)
Qt Version: 4.5.2
Operating System: Linux 2.6.31-14-generic x86_64
Distribution: Ubuntu 9.10

What I was doing when the application crashed:
error to close kontact

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[KCrash Handler]
#5  0x7f3540526780 in QListData::shared_null () from
/usr/lib/libQtCore.so.4
#6  0x7f353e757f1b in qDeleteAllQListKIO::Slave*::const_iterator
(begin=value optimized out, end=...) at
/usr/include/qt4/QtCore/qalgorithms.h:350
#7  qDeleteAllSlaveList (begin=value optimized out, end=...) at
/usr/include/qt4/QtCore/qalgorithms.h:358
#8  ~ProtocolInfo (begin=value optimized out, end=...) at
../../kio/kio/scheduler.cpp:171
#9  qDeleteAllQHashQString,
KIO::SchedulerPrivate::ProtocolInfo*::const_iterator (begin=value optimized
out, end=...) at /usr/include/qt4/QtCore/qalgorithms.h:350
#10 0x7f353e754523 in qDeleteAllKIO::SchedulerPrivate::ProtocolInfoDict
() at /usr/include/qt4/QtCore/qalgorithms.h:358
#11 ~SchedulerPrivate () at ../../kio/kio/scheduler.cpp:103
#12 destroy () at ../../kio/kio/scheduler.cpp:209
#13 0x7f353faaac12 in __run_exit_handlers (status=0) at exit.c:78
#14 *__GI_exit (status=0) at exit.c:100
#15 0x7f353fa90ac4 in __libc_start_main (main=value optimized out,
argc=value optimized out, ubp_av=value optimized out, init=value optimized
out, fini=value optimized out, 
rtld_fini=value optimized out, stack_end=0x7fff045bc6f8) at
libc-start.c:252
#16 0x00403009 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 186936] kmail hangs fetching emails after being woken up from suspend

2009-10-21 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=186936


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




--- Comment #13 from Raúl rasasi78 gmail com  2009-10-21 10:53:24 ---
I think andrew (#10) is right. I'm attacching information there.

-- 
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 132088] Switching between IMAP folders randomly causes kmail to hang

2009-10-21 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=132088


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




--- Comment #4 from Raúl rasasi78 gmail com  2009-10-21 11:42:18 ---
Hello:

I think as Peter (#3) says this is a dupe of those bugs. I'll be attaching more
info on https://bugs.kde.org/show_bug.cgi?id=172410 which I consider the most
comprehensively explain and thus primary.

Regards,

-- 
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 172410] imap connection not automatically restored

2009-10-21 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=172410


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




--- Comment #5 from Raúl rasasi78 gmail com  2009-10-21 11:57:21 ---
Hello:

I'm also seeing this problem, which likely dupes
https://bugs.kde.org/show_bug.cgi?id=186936 and
https://bugs.kde.org/show_bug.cgi?id=132088.

I also have this problem when I hibernate/resume. Debian testing with KDE
4.3.1. I think it's kio_impa4 to blame. Looks like connection is so badly
interrupted that it can't be recovered. IMHO, in this case some sort of
recovery procedure should be used so retries are timeout, and the connection is
given up. Once that is done, a new connection should be carried out.

Backtrace of the kio_imap4 when problem is reproduced looks like this:
#0  0x7f7d8a69beb3 in __select_nocancel () from /lib/libc.so.6  
#1  0x7f7d891bbf52 in QNativeSocketEnginePrivate::nativeSelect
(this=0x1cce720, timeout=-1, checkRead=value optimized out, checkWrite=value
optimized out, selectForRead=0x7fff27148baf,   
selectForWrite=0x7fff27148bae) at socket/qnativesocketengine_unix.cpp:888   
#2  0x7f7d891a527c in QNativeSocketEngine::waitForReadOrWrite
(this=0x1cce4f0, readyToRead=0x7fff27148baf, readyToWrite=0x7fff27148bae,
checkRead=208, checkWrite=255, msecs=-1, timedOut=0x0) 
at socket/qnativesocketengine.cpp:904   
#3  0x7f7d891b581b in QAbstractSocket::waitForReadyRead (this=0x1cca240,
msecs=-1) at socket/qabstractsocket.cpp:1700
#4  0x7f7d8bf2516f in KIO::SocketConnectionBackend::waitForIncomingTask
(this=0x1cc9fd0, ms=-1) at ../../kio/kio/connection.cpp:268 
#5  0x7f7d8c010e60 in KIO::SlaveBase::dispatchLoop (this=0x1cc4f50) at
../../kio/kio/slavebase.cpp:272 
#6  0x7f7d81fabb23 in kdemain (argc=value optimized out, argv=0x1c81720)
at ../../../kioslave/imap4/imap4.cpp:132
#7  0x00407264 in launch (argc=4, _name=0x1c79b58 kio_imap4,
args=value optimized out, cwd=0x0, envc=0, envs=0x1c79bdb ,
reset_env=false, tty=0x0, avoid_loops=false, startup_id_str=0x40a0ff 0)
at ../../kinit/kinit.cpp:677
#8  0x00407a28 in handle_launcher_request (sock=7, who=value optimized
out) at ../../kinit/kinit.cpp:1169 
#9  0x00407fae in handle_requests (waitForPid=0) at
../../kinit/kinit.cpp:1362  
#10 0x0040863b in main (argc=2, argv=0x7fff271499d8,
envp=0x7fff271499f0) at ../../kinit/kinit.cpp:1793

Also doing further investigation I also realised that kontact was waiting for a
pipe input which is connected to itself. I'm sorry but I don't have a backtrace
for that right now.

One hypothesis is that pipe should be somehow related to kio_imap4 and it's
created once kontact(or kmail) launches the imap kioslave. Once the imap
kioslave is stalled or its connnection to kioslave is lost, kontact doesn't
destoy that pipe and relaunches a new imap kioslave.

Maybe I'm right, or maybe rationale is plain wrong. I hope someone could tell.

Regards,

-- 
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 209884] New: Crash when editing 'from' field, possibly related to LDAP.

2009-10-08 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=209884

   Summary: Crash when editing 'from' field, possibly related to
LDAP.
   Product: kmail
   Version: 1.12.1
  Platform: unspecified
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: rasas...@gmail.com


Version:   1.12.1 (using 4.3.1 (KDE 4.3.1), Debian packages)
Compiler:  cc
OS:Linux (x86_64) release 2.6.30-2-amd64

  Hello:

  I was writing a new message. Right click on kmail system tray icon-new
message. I wrote the body. Then I went the from field and when I start adding
the addresee I got a crash with this backtrace:

Application: Kontact (kontact), signal: Segmentation fault
[Current thread is 1 (Thread 0x7fa02fc80750 (LWP 14046))]

Thread 5 (Thread 0x7fa00cf9c950 (LWP 14056)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:261
#1  0x7fa02e5ae469 in QWaitConditionPrivate::wait (this=0xff08e8,
mutex=0x1104170, time=18446744073709551615) at
thread/qwaitcondition_unix.cpp:87
#2  QWaitCondition::wait (this=0xff08e8, mutex=0x1104170,
time=18446744073709551615) at thread/qwaitcondition_unix.cpp:159
#3  0x7fa01752ce04 in
ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0xff08c0,
th=0x27782d0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:365
#4  0x7fa01752f54b in ThreadWeaver::WorkingHardState::applyForWork
(this=0xfefed0, th=0x27782d0) at
../../../threadweaver/Weaver/WorkingHardState.cpp:71
#5  0x7fa01752db1f in ThreadWeaver::ThreadRunHelper::run
(this=0x7fa00cf9c090, parent=0xff08c0, th=0x27782d0) at
../../../threadweaver/Weaver/Thread.cpp:87
#6  0x7fa01752df59 in ThreadWeaver::Thread::run (this=0x27782d0) at
../../../threadweaver/Weaver/Thread.cpp:142
#7  0x7fa02e5ad475 in QThreadPrivate::start (arg=0x27782d0) at
thread/qthread_unix.cpp:188
#8  0x7fa027574f9a in start_thread (arg=value optimized out) at
pthread_create.c:300
#9  0x7fa02d39f56d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#10 0x in ?? ()

Thread 4 (Thread 0x7fa00f9e1950 (LWP 14896)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:261
#1  0x7fa02e5ae469 in QWaitConditionPrivate::wait (this=0xff08e8,
mutex=0x1104170, time=18446744073709551615) at
thread/qwaitcondition_unix.cpp:87
#2  QWaitCondition::wait (this=0xff08e8, mutex=0x1104170,
time=18446744073709551615) at thread/qwaitcondition_unix.cpp:159
#3  0x7fa01752ce04 in
ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0xff08c0,
th=0x3054bc0) at ../../../threadweaver/Weaver/WeaverImpl.cpp:365
#4  0x7fa01752f54b in ThreadWeaver::WorkingHardState::applyForWork
(this=0xfefed0, th=0x3054bc0) at
../../../threadweaver/Weaver/WorkingHardState.cpp:71
#5  0x7fa01752f564 in ThreadWeaver::WorkingHardState::applyForWork
(this=0xfefed0, th=0x3054bc0) at
../../../threadweaver/Weaver/WorkingHardState.cpp:74
#6  0x7fa01752f564 in ThreadWeaver::WorkingHardState::applyForWork
(this=0xfefed0, th=0x3054bc0) at
../../../threadweaver/Weaver/WorkingHardState.cpp:74
#7  0x7fa01752db1f in ThreadWeaver::ThreadRunHelper::run
(this=0x7fa00f9e1090, parent=0xff08c0, th=0x3054bc0) at
../../../threadweaver/Weaver/Thread.cpp:87
#8  0x7fa01752df59 in ThreadWeaver::Thread::run (this=0x3054bc0) at
../../../threadweaver/Weaver/Thread.cpp:142
#9  0x7fa02e5ad475 in QThreadPrivate::start (arg=0x3054bc0) at
thread/qthread_unix.cpp:188
#10 0x7fa027574f9a in start_thread (arg=value optimized out) at
pthread_create.c:300
#11 0x7fa02d39f56d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#12 0x in ?? ()

Thread 3 (Thread 0x7fa0018a0950 (LWP 16193)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:261
#1  0x7fa02e5ae469 in QWaitConditionPrivate::wait (this=0xff08e8,
mutex=0x1104170, time=18446744073709551615) at
thread/qwaitcondition_unix.cpp:87
#2  QWaitCondition::wait (this=0xff08e8, mutex=0x1104170,
time=18446744073709551615) at thread/qwaitcondition_unix.cpp:159
#3  0x7fa01752ce04 in
ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0xff08c0,
th=0x4c09c00) at ../../../threadweaver/Weaver/WeaverImpl.cpp:365
#4  0x7fa01752f54b in ThreadWeaver::WorkingHardState::applyForWork
(this=0xfefed0, th=0x4c09c00) at
../../../threadweaver/Weaver/WorkingHardState.cpp:71
#5  0x7fa01752f564 in ThreadWeaver::WorkingHardState::applyForWork
(this=0xfefed0, th=0x4c09c00) at
../../../threadweaver/Weaver/WorkingHardState.cpp:74
#6  0x7fa01752f564 in ThreadWeaver::WorkingHardState::applyForWork
(this=0xfefed0, th=0x4c09c00) at
../../../threadweaver/Weaver/WorkingHardState.cpp:74
#7  0x7fa01752db1f in 

[Bug 204075] New: Crash on KHTMLPart inside kontact. Possibly related to Qt cursor handling.

2009-08-16 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=204075

   Summary: Crash on KHTMLPart inside kontact. Possibly related to
Qt cursor handling.
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: rasas...@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.30-toi3 x86_64
Distribution: Debian GNU/Linux unstable (sid)

What I was doing when the application crashed:
I opened an url pointing to a picture from the akregator component of kontact.,
I went back and forth using kontact arrows in the toolbar. I could see the
picture several times, but when I asked kontact to go back, forth or move the
image using key arrows (can't remember which of the 3 I did), kontact crashed
as detailed below.

I've see other bugs possibly due to the same problem, which could be in Qt.
Those bugs are: https://bugs.kde.org/show_bug.cgi?id=199907 and
https://bugs.kde.org/show_bug.cgi?id=196512

I'm on Debian sid (Linux 2.6.30), KDE 4.3 and Qt 4.5.2.

Regards,

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[KCrash Handler]
#5  QWidget::internalWinId (this=0x29c31e0) at
../../include/QtGui/../../src/gui/kernel/qwidget.h:234
#6  QWidget::effectiveWinId (this=0x29c31e0) at kernel/qwidget.cpp:2223
#7  0x7f9837145891 in qt_x11_enforce_cursor (w=0x8504550, force=false) at
kernel/qwidget_x11.cpp:306
#8  0x7f9837145a6d in QWidgetPrivate::setCursor_sys (this=value optimized
out) at kernel/qwidget_x11.cpp:1241
#9  0x7f983710c091 in QWidget::setCursor (this=0x8504550, cursor=...) at
kernel/qwidget.cpp:4623
#10 0x7f9835c71051 in KHTMLView::init (this=0x3762b40) at
../../khtml/khtmlview.cpp:607
#11 0x7f9835c79e45 in KHTMLView (this=0x3762b40, part=0x2940f90,
parent=value optimized out) at ../../khtml/khtmlview.cpp:565
#12 0x7f9835ca6ff2 in KHTMLPart (this=0x2940f90, parentWidget=0x607a960,
parent=value optimized out, prof=KHTMLPart::DefaultGUI, __in_chrg=value
optimized out, 
__vtt_parm=value optimized out) at ../../khtml/khtml_part.cpp:235
#13 0x7f980bdfe5d3 in KHTMLFactory::createPartObject (this=value optimized
out, parentWidget=0x607a960, parent=0x607a960, className=value optimized
out, args=value optimized out)
at ../../khtml/khtml_factory.cpp:46
#14 0x7f983812f20c in KPluginFactory::create (this=0x29bc8b0,
iface=0x7f9836679c60 KParts::ReadOnlyPart, parentWidget=0x607a960,
parent=0x607a960, args=..., keyword=...)
at ../../kdecore/util/kpluginfactory.cpp:171
#15 0x7f981858624b in KPluginFactory::createKParts::ReadOnlyPart
(this=0x28b9060, mimetype=...) at /usr/include/kpluginfactory.h:491
#16 Akregator::BrowserFrame::Private::loadPartForMimetype (this=0x28b9060,
mimetype=...) at ../../../akregator/src/browserframe_p.cpp:91
#17 0x7f9818587706 in Akregator::BrowserFrame::Private::restoreHistoryEntry
(this=0x28b9060, entry=...) at ../../../akregator/src/browserframe_p.cpp:152
#18 0x7f981858349d in Akregator::BrowserFrame::slotHistoryBack
(this=0x607a960) at ../../../akregator/src/browserframe.cpp:332
#19 0x7f981858306d in Akregator::FrameManager::qt_metacall (this=0x23a1e80,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=0x7fffb0f4b050)
at ./framemanager.moc:152
#20 0x7f9837c59602 in QMetaObject::activate (sender=0x24786a0,
from_signal_index=value optimized out, to_signal_index=6, argv=0x464a730) at
kernel/qobject.cpp:3112
#21 0x7f98370b68d7 in QAction::triggered (this=0x29c31e0, _t1=false) at
.moc/release-shared/moc_qaction.cpp:236
#22 0x7f98370b7d50 in QAction::activate (this=0x24786a0, event=value
optimized out) at kernel/qaction.cpp:1160
#23 0x7f98370ba80f in QAction::event (this=0x29c31e0, e=value optimized
out) at kernel/qaction.cpp:1079
#24 0x7f983850d613 in KAction::event (this=0x29c31e0, event=0x7fffb0f4b5e0)
at ../../kdeui/actions/kaction.cpp:88
#25 0x7f98370bc7ad in QApplicationPrivate::notify_helper (this=0xe79590,
receiver=0x24786a0, e=0x7fffb0f4b5e0) at kernel/qapplication.cpp:4056
#26 0x7f98370c480a in QApplication::notify (this=0x7fffb0f4ddb0,
receiver=0x24786a0, e=0x7fffb0f4b5e0) at kernel/qapplication.cpp:4021
#27 0x7f98385dfb2b in KApplication::notify (this=0x7fffb0f4ddb0,
receiver=0x24786a0, event=0x7fffb0f4b5e0) at
../../kdeui/kernel/kapplication.cpp:302
#28 0x7f9837c4449c in QCoreApplication::notifyInternal
(this=0x7fffb0f4ddb0, receiver=0x24786a0, event=0x7fffb0f4b5e0) at
kernel/qcoreapplication.cpp:610
#29 0x7f98370f185d in QCoreApplication::sendEvent (this=value optimized
out, e=0x7fffb0f4bae0) at
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:213
#30 QShortcutMap::dispatchEvent (this=value optimized 

[Bug 202291] New: akregator crash when i open opening multiple tabs news

2009-08-02 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=202291

   Summary: akregator crash when i open opening multiple tabs news
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.0 rc3
KDE Version: 4.2.98 (KDE 4.2.98 (KDE 4.3 RC3)) release 150
Qt Version: 4.5.2
Operating System: Linux 2.6.27.25-0.1-default x86_64
Distribution: openSUSE 11.1 (x86_64)

What I was doing when the application crashed:
i open multiple tabs in kde-look with wallpapers, akregator crash

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[Current thread is 1 (Thread 0x7f44cb378750 (LWP 4174))]

Thread 3 (Thread 0x7f44a887a950 (LWP 4498)):
#0  0x7f44c66f0fdd in pthread_cond_timedwait@@GLIBC_2.3.2 () from
/lib64/libpthread.so.0
#1  0x7f44c6961df7 in QWaitCondition::wait(QMutex*, unsigned long) () from
/usr/lib64/libQtCore.so.4
#2  0x7f44c6957a99 in ?? () from /usr/lib64/libQtCore.so.4
#3  0x7f44c6960e65 in ?? () from /usr/lib64/libQtCore.so.4
#4  0x7f44c66ed070 in start_thread () from /lib64/libpthread.so.0
#5  0x7f44c4bca10d in clone () from /lib64/libc.so.6
#6  0x in ?? ()

Thread 2 (Thread 0x7f44abb53950 (LWP 4499)):
#0  0x7f44c66f0fdd in pthread_cond_timedwait@@GLIBC_2.3.2 () from
/lib64/libpthread.so.0
#1  0x7f44c6961df7 in QWaitCondition::wait(QMutex*, unsigned long) () from
/usr/lib64/libQtCore.so.4
#2  0x7f44c6957a99 in ?? () from /usr/lib64/libQtCore.so.4
#3  0x7f44c6960e65 in ?? () from /usr/lib64/libQtCore.so.4
#4  0x7f44c66ed070 in start_thread () from /lib64/libpthread.so.0
#5  0x7f44c4bca10d in clone () from /lib64/libc.so.6
#6  0x in ?? ()

Thread 1 (Thread 0x7f44cb378750 (LWP 4174)):
[KCrash Handler]
#5  0x7f44c7d62840 in KIO::SimpleJob::url() const () from
/usr/lib64/libkio.so.5
#6  0x7f44c8171647 in KParts::BrowserRun::slotBrowserMimetype(KIO::Job*,
QString const) () from /usr/lib64/libkparts.so.4
#7  0x7f44c8172b0d in KParts::BrowserRun::qt_metacall(QMetaObject::Call,
int, void**) () from /usr/lib64/libkparts.so.4
#8  0x7f44c6a5f6e2 in QMetaObject::activate(QObject*, int, int, void**) ()
from /usr/lib64/libQtCore.so.4
#9  0x7f44c7d62e17 in KIO::TransferJob::mimetype(KIO::Job*, QString const)
() from /usr/lib64/libkio.so.5
#10 0x7f44c7d68851 in KIO::TransferJob::qt_metacall(QMetaObject::Call, int,
void**) () from /usr/lib64/libkio.so.5
#11 0x7f44c6a5f6e2 in QMetaObject::activate(QObject*, int, int, void**) ()
from /usr/lib64/libQtCore.so.4
#12 0x7f44c7e27815 in KIO::SlaveInterface::mimeType(QString const) () from
/usr/lib64/libkio.so.5
#13 0x7f44c7e2adf0 in KIO::SlaveInterface::dispatch(int, QByteArray const)
() from /usr/lib64/libkio.so.5
#14 0x7f44c7e27e82 in KIO::SlaveInterface::dispatch() () from
/usr/lib64/libkio.so.5
#15 0x7f44c7e1a9e3 in KIO::Slave::gotInput() () from /usr/lib64/libkio.so.5
#16 0x7f44c7e1cc48 in KIO::Slave::qt_metacall(QMetaObject::Call, int,
void**) () from /usr/lib64/libkio.so.5
#17 0x7f44c6a5f6e2 in QMetaObject::activate(QObject*, int, int, void**) ()
from /usr/lib64/libQtCore.so.4
#18 0x7f44c7d36a41 in ?? () from /usr/lib64/libkio.so.5
#19 0x7f44c7d36e9a in KIO::Connection::qt_metacall(QMetaObject::Call, int,
void**) () from /usr/lib64/libkio.so.5
#20 0x7f44c6a5a8a8 in QObject::event(QEvent*) () from
/usr/lib64/libQtCore.so.4
#21 0x7f44c5768b0d in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() from /usr/lib64/libQtGui.so.4
#22 0x7f44c5770d9a in QApplication::notify(QObject*, QEvent*) () from
/usr/lib64/libQtGui.so.4
#23 0x7f44c788971b in KApplication::notify(QObject*, QEvent*) () from
/usr/lib64/libkdeui.so.5
#24 0x7f44c6a4a94c in QCoreApplication::notifyInternal(QObject*, QEvent*)
() from /usr/lib64/libQtCore.so.4
#25 0x7f44c6a4b5ca in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) () from /usr/lib64/libQtCore.so.4
#26 0x7f44c6a740b3 in ?? () from /usr/lib64/libQtCore.so.4
#27 0x7f44c031f0fb in g_main_context_dispatch () from
/usr/lib64/libglib-2.0.so.0
#28 0x7f44c03228cd in ?? () from /usr/lib64/libglib-2.0.so.0
#29 0x7f44c0322a8b in g_main_context_iteration () from
/usr/lib64/libglib-2.0.so.0
#30 0x7f44c6a73d3f in
QEventDispatcherGlib::processEvents(QFlagsQEventLoop::ProcessEventsFlag) ()
from /usr/lib64/libQtCore.so.4
#31 0x7f44c57fffef in ?? () from /usr/lib64/libQtGui.so.4
#32 0x7f44c6a491d2 in
QEventLoop::processEvents(QFlagsQEventLoop::ProcessEventsFlag) () from
/usr/lib64/libQtCore.so.4
#33 0x7f44c6a495a4 in
QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) () from
/usr/lib64/libQtCore.so.4
#34 

[Bug 201918] New: error to delete calendar google

2009-07-29 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=201918

   Summary: error to delete calendar google
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.0 rc3
KDE Version: 4.2.98 (KDE 4.2.98 (KDE 4.3 RC3)) release 150
Qt Version: 4.5.2
Operating System: Linux 2.6.27.25-0.1-default x86_64
Distribution: openSUSE 11.1 (x86_64)

What I was doing when the application crashed:
i delete calendar google, and aplication is crash, sorry, my english is very
bad

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[KCrash Handler]
#5  0x01604b00 in ?? ()
#6  0x7f5dfdeb69fd in ?? () from /usr/lib64/libkorganizerprivate.so.4
#7  0x7f5dfdeb3ebb in ?? () from /usr/lib64/libkorganizerprivate.so.4
#8  0x7f5dfdeb50a3 in ?? () from /usr/lib64/libkorganizerprivate.so.4
#9  0x7f5dfdeb50fe in ?? () from /usr/lib64/libkorganizerprivate.so.4
#10 0x7f5dfdef7f36 in ?? () from /usr/lib64/libkorganizerprivate.so.4
#11 0x7f5dfdee7172 in CalendarView::updateView(QDate const, QDate const,
bool) () from /usr/lib64/libkorganizerprivate.so.4
#12 0x7f5dfdee90f1 in CalendarView::updateView() () from
/usr/lib64/libkorganizerprivate.so.4
#13 0x7f5dfdef6077 in CalendarView::qt_metacall(QMetaObject::Call, int,
void**) () from /usr/lib64/libkorganizerprivate.so.4
#14 0x7f5e1762f6e2 in QMetaObject::activate(QObject*, int, int, void**) ()
from /usr/lib64/libQtCore.so.4
#15 0x7f5dfdf5f9f6 in ?? () from /usr/lib64/libkorganizerprivate.so.4
#16 0x7f5dfdf630ad in ?? () from /usr/lib64/libkorganizerprivate.so.4
#17 0x7f5e1762f6e2 in QMetaObject::activate(QObject*, int, int, void**) ()
from /usr/lib64/libQtCore.so.4
#18 0x7f5e16332af7 in QAction::triggered(bool) () from
/usr/lib64/libQtGui.so.4
#19 0x7f5e16333f70 in QAction::activate(QAction::ActionEvent) () from
/usr/lib64/libQtGui.so.4
#20 0x7f5e1671de1d in ?? () from /usr/lib64/libQtGui.so.4
#21 0x7f5e16723e5e in ?? () from /usr/lib64/libQtGui.so.4
#22 0x7f5e16389aed in QWidget::event(QEvent*) () from
/usr/lib64/libQtGui.so.4
#23 0x7f5e167266ab in QMenu::event(QEvent*) () from
/usr/lib64/libQtGui.so.4
#24 0x7f5e16338b0d in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() from /usr/lib64/libQtGui.so.4
#25 0x7f5e163414fa in QApplication::notify(QObject*, QEvent*) () from
/usr/lib64/libQtGui.so.4
#26 0x7f5e1845971b in KApplication::notify(QObject*, QEvent*) () from
/usr/lib64/libkdeui.so.5
#27 0x7f5e1761a94c in QCoreApplication::notifyInternal(QObject*, QEvent*)
() from /usr/lib64/libQtCore.so.4
#28 0x7f5e16340748 in QApplicationPrivate::sendMouseEvent(QWidget*,
QMouseEvent*, QWidget*, QWidget*, QWidget**, QPointerQWidget) () from
/usr/lib64/libQtGui.so.4
#29 0x7f5e163aa6c4 in ?? () from /usr/lib64/libQtGui.so.4
#30 0x7f5e163a9543 in QApplication::x11ProcessEvent(_XEvent*) () from
/usr/lib64/libQtGui.so.4
#31 0x7f5e163d0864 in ?? () from /usr/lib64/libQtGui.so.4
#32 0x7f5e10eef0fb in g_main_context_dispatch () from
/usr/lib64/libglib-2.0.so.0
#33 0x7f5e10ef28cd in ?? () from /usr/lib64/libglib-2.0.so.0
#34 0x7f5e10ef2a8b in g_main_context_iteration () from
/usr/lib64/libglib-2.0.so.0
#35 0x7f5e17643d3f in
QEventDispatcherGlib::processEvents(QFlagsQEventLoop::ProcessEventsFlag) ()
from /usr/lib64/libQtCore.so.4
#36 0x7f5e163cffef in ?? () from /usr/lib64/libQtGui.so.4
#37 0x7f5e176191d2 in
QEventLoop::processEvents(QFlagsQEventLoop::ProcessEventsFlag) () from
/usr/lib64/libQtCore.so.4
#38 0x7f5e176195a4 in
QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) () from
/usr/lib64/libQtCore.so.4
#39 0x7f5e1761b894 in QCoreApplication::exec() () from
/usr/lib64/libQtCore.so.4
#40 0x00404995 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 201261] New: error al descomprimir archivo .rar

2009-07-23 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=201261

   Summary: error al descomprimir archivo .rar
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.0 rc3
KDE Version: 4.2.98 (KDE 4.2.98 (KDE 4.3 RC3)) release 146
Qt Version: 4.5.2
Operating System: Linux 2.6.27.25-0.1-default x86_64
Distribution: openSUSE 11.1 (x86_64)

What I was doing when the application crashed:
error al descomprimir archivo adjunto en formato .rar

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[KCrash Handler]
#5  0x7feba2e6f51a in ?? () from /usr/lib64/libkmailprivate.so.4
#6  0x7feba3000ff2 in KMSaveAttachmentsCommand::saveItem(partNode*, KUrl
const) () from /usr/lib64/libkmailprivate.so.4
#7  0x7feba30032fd in KMSaveAttachmentsCommand::slotSaveAll() () from
/usr/lib64/libkmailprivate.so.4
#8  0x7feba3005a3d in
KMSaveAttachmentsCommand::qt_metacall(QMetaObject::Call, int, void**) () from
/usr/lib64/libkmailprivate.so.4
#9  0x7febb70126e2 in QMetaObject::activate(QObject*, int, int, void**) ()
from /usr/lib64/libQtCore.so.4
#10 0x7feba2febdb9 in KMLoadPartsCommand::execute() () from
/usr/lib64/libkmailprivate.so.4
#11 0x7feba300627c in KMLoadPartsCommand::slotStart() () from
/usr/lib64/libkmailprivate.so.4
#12 0x7feba2ff7b92 in KMCommand::qt_metacall(QMetaObject::Call, int,
void**) () from /usr/lib64/libkmailprivate.so.4
#13 0x7feba2ff7d46 in KMLoadPartsCommand::qt_metacall(QMetaObject::Call,
int, void**) () from /usr/lib64/libkmailprivate.so.4
#14 0x7febb70126e2 in QMetaObject::activate(QObject*, int, int, void**) ()
from /usr/lib64/libQtCore.so.4
#15 0x7febb701841f in ?? () from /usr/lib64/libQtCore.so.4
#16 0x7febb700d533 in QObject::event(QEvent*) () from
/usr/lib64/libQtCore.so.4
#17 0x7febb5d1bb0d in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() from /usr/lib64/libQtGui.so.4
#18 0x7febb5d23d9a in QApplication::notify(QObject*, QEvent*) () from
/usr/lib64/libQtGui.so.4
#19 0x7febb7e3c71b in KApplication::notify(QObject*, QEvent*) () from
/usr/lib64/libkdeui.so.5
#20 0x7febb6ffd94c in QCoreApplication::notifyInternal(QObject*, QEvent*)
() from /usr/lib64/libQtCore.so.4
#21 0x7febb702ab60 in ?? () from /usr/lib64/libQtCore.so.4
#22 0x7febb7026ddd in ?? () from /usr/lib64/libQtCore.so.4
#23 0x7febb08d20fb in g_main_context_dispatch () from
/usr/lib64/libglib-2.0.so.0
#24 0x7febb08d58cd in ?? () from /usr/lib64/libglib-2.0.so.0
#25 0x7febb08d5a8b in g_main_context_iteration () from
/usr/lib64/libglib-2.0.so.0
#26 0x7febb7026d3f in
QEventDispatcherGlib::processEvents(QFlagsQEventLoop::ProcessEventsFlag) ()
from /usr/lib64/libQtCore.so.4
#27 0x7febb5db2fef in ?? () from /usr/lib64/libQtGui.so.4
#28 0x7febb6ffc1d2 in
QEventLoop::processEvents(QFlagsQEventLoop::ProcessEventsFlag) () from
/usr/lib64/libQtCore.so.4
#29 0x7febb6ffc5a4 in
QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) () from
/usr/lib64/libQtCore.so.4
#30 0x7febb6ffe894 in QCoreApplication::exec() () from
/usr/lib64/libQtCore.so.4
#31 0x00404995 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 201260] New: error al descargar adjuntos de kmail

2009-07-23 Thread Raúl A V
https://bugs.kde.org/show_bug.cgi?id=201260

   Summary: error al descargar adjuntos de kmail
   Product: kontact
   Version: unspecified
  Platform: Unlisted Binaries
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: kile...@gmail.com


Application that crashed: kontact
Version of the application: 4.3.0 rc3
KDE Version: 4.2.98 (KDE 4.2.98 (KDE 4.3 RC3)) release 146
Qt Version: 4.5.2
Operating System: Linux 2.6.27.25-0.1-default x86_64
Distribution: openSUSE 11.1 (x86_64)

What I was doing when the application crashed:
error al descargar archivos adjuntos desde Kontact en la pestaña del correo

 -- Backtrace:
Application: Kontact (kontact), signal: Segmentation fault
[KCrash Handler]
#5  0x7fe14dea36a5 in KMHandleAttachmentCommand::slotStart() () from
/usr/lib64/libkmailprivate.so.4
#6  0x7fe14de91cdb in
KMHandleAttachmentCommand::qt_metacall(QMetaObject::Call, int, void**) () from
/usr/lib64/libkmailprivate.so.4
#7  0x7fe161eae6e2 in QMetaObject::activate(QObject*, int, int, void**) ()
from /usr/lib64/libQtCore.so.4
#8  0x7fe161eb441f in ?? () from /usr/lib64/libQtCore.so.4
#9  0x7fe161ea9533 in QObject::event(QEvent*) () from
/usr/lib64/libQtCore.so.4
#10 0x7fe160bb7b0d in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() from /usr/lib64/libQtGui.so.4
#11 0x7fe160bbfd9a in QApplication::notify(QObject*, QEvent*) () from
/usr/lib64/libQtGui.so.4
#12 0x7fe162cd871b in KApplication::notify(QObject*, QEvent*) () from
/usr/lib64/libkdeui.so.5
#13 0x7fe161e9994c in QCoreApplication::notifyInternal(QObject*, QEvent*)
() from /usr/lib64/libQtCore.so.4
#14 0x7fe161ec6b60 in ?? () from /usr/lib64/libQtCore.so.4
#15 0x7fe161ec2ddd in ?? () from /usr/lib64/libQtCore.so.4
#16 0x7fe15b76e0fb in g_main_context_dispatch () from
/usr/lib64/libglib-2.0.so.0
#17 0x7fe15b7718cd in ?? () from /usr/lib64/libglib-2.0.so.0
#18 0x7fe15b771a8b in g_main_context_iteration () from
/usr/lib64/libglib-2.0.so.0
#19 0x7fe161ec2d3f in
QEventDispatcherGlib::processEvents(QFlagsQEventLoop::ProcessEventsFlag) ()
from /usr/lib64/libQtCore.so.4
#20 0x7fe160c4efef in ?? () from /usr/lib64/libQtGui.so.4
#21 0x7fe161e981d2 in
QEventLoop::processEvents(QFlagsQEventLoop::ProcessEventsFlag) () from
/usr/lib64/libQtCore.so.4
#22 0x7fe161e985a4 in
QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) () from
/usr/lib64/libQtCore.so.4
#23 0x7fe161e9a894 in QCoreApplication::exec() () from
/usr/lib64/libQtCore.so.4
#24 0x00404995 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 136145] Crash when saving some (but not all) IMAP attachments at once

2009-06-10 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=136145


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




--- Comment #29 from Raúl rasasi78 gmail com  2009-06-10 11:26:05 ---
Hello:

Got the same crash on 4.2.2 when trying to open an attachment:
Aplicación: Kontact (kontact), señal SIGSEGV
0x7f30c8804ff1 in nanosleep () from /lib/libc.so.6
[Current thread is 0 (LWP 18289)]

Thread 2 (Thread 0x41e1b950 (LWP 18356)):
#0  0x7f30c2cb9d29 in pthread_cond_wait@@GLIBC_2.3.2 () from
/lib/libpthread.so.0
#1  0x7f30c9a78739 in QWaitCondition::wait (this=0x1bc1048,
mutex=0x1a41630, time=18446744073709551615) at
thread/qwaitcondition_unix.cpp:87
#2  0x7f30b2ee2e04 in
ThreadWeaver::WeaverImpl::blockThreadUntilJobsAreBeingAssigned (this=0x1bc1020,
th=0x2aad530) at ../../../threadweaver/Weaver/WeaverImpl.cpp:365
#3  0x7f30b2ee55b3 in ThreadWeaver::WorkingHardState::applyForWork
(this=0x1639cf0, th=0x2aad530) at
../../../threadweaver/Weaver/WorkingHardState.cpp:71
#4  0x7f30b2ee3b2f in ThreadWeaver::ThreadRunHelper::run (this=0x41e1b0e0,
parent=0x1bc1020, th=0x2aad530) at ../../../threadweaver/Weaver/Thread.cpp:87
#5  0x7f30b2ee3f89 in ThreadWeaver::Thread::run (this=0x2aad530) at
../../../threadweaver/Weaver/Thread.cpp:142
#6  0x7f30c9a77742 in QThreadPrivate::start (arg=0x2aad530) at
thread/qthread_unix.cpp:189
#7  0x7f30c2cb5fc7 in start_thread () from /lib/libpthread.so.0
#8  0x7f30c88365ad in clone () from /lib/libc.so.6
#9  0x in ?? ()

Thread 1 (Thread 0x7f30cb1456f0 (LWP 18289)):
[KCrash Handler]
#5  KMLoadPartsCommand::slotPartRetrieved (this=0x2d48330, msg=value optimized
out, partSpecifier=value optimized out) at
../../mimelib/mimelib/string.h:618
#6  0x7f30b3481065 in KMLoadPartsCommand::qt_metacall (this=0x2d48330,
_c=QMetaObject::InvokeMetaMethod, _id=1, _a=0x7fffd328eff0) at
./kmcommands.moc:1810
#7  0x7f30c9b75862 in QMetaObject::activate (sender=0x29fb700,
from_signal_index=value optimized out, to_signal_index=5, argv=0x283fd11) at
kernel/qobject.cpp:3120
#8  0x7f30b34d1817 in KMail::FolderJob::messageUpdated (this=0x29fb738,
_t1=0x2d16660, _t2=value optimized out) at ./folderjob.moc:104
#9  0x7f30b34dd687 in KMail::ImapJob::slotGetMessageResult (this=0x29fb700,
job=0x2d18570) at ../../kmail/imapjob.cpp:476
#10 0x7f30b34e08d7 in KMail::ImapJob::qt_metacall (this=0x29fb700,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=0x7fffd328f240)
at ./imapjob.moc:81
#11 0x7f30c9b75862 in QMetaObject::activate (sender=0x2d18570,
from_signal_index=value optimized out, to_signal_index=7, argv=0x283fd11) at
kernel/qobject.cpp:3120
#12 0x7f30c9f4ae92 in KJob::result (this=0x29fb738, _t1=0x2d18570) at
./kjob.moc:186
#13 0x7f30c9f4b20f in KJob::emitResult (this=0x2d18570) at
../../kdecore/jobs/kjob.cpp:294
#14 0x7f30c73a8c10 in KIO::SimpleJob::slotFinished (this=0x2d18570) at
../../kio/kio/job.cpp:489
#15 0x7f30c73a9e33 in KIO::TransferJob::slotFinished (this=0x2d18570) at
../../kio/kio/job.cpp:966
#16 0x7f30c73aaeb5 in KIO::TransferJob::qt_metacall (this=0x2d18570,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=0x7fffd328f640)
at ./jobclasses.moc:336
#17 0x7f30c9b75862 in QMetaObject::activate (sender=0x24bdf80,
from_signal_index=value optimized out, to_signal_index=8, argv=0x283fd11) at
kernel/qobject.cpp:3120
#18 0x7f30c7460461 in KIO::SlaveInterface::dispatch (this=0x24bdf80,
_cmd=104, rawdata=value optimized out) at
../../kio/kio/slaveinterface.cpp:175
#19 0x7f30c745cfb2 in KIO::SlaveInterface::dispatch (this=0x24bdf80) at
../../kio/kio/slaveinterface.cpp:91
#20 0x7f30c744e1b3 in KIO::Slave::gotInput (this=0x24bdf80) at
../../kio/kio/slave.cpp:322
#21 0x7f30c74504b8 in KIO::Slave::qt_metacall (this=0x24bdf80,
_c=QMetaObject::InvokeMetaMethod, _id=44480384, _a=0x7fffd328fa60) at
./slave.moc:75
#22 0x7f30c9b75862 in QMetaObject::activate (sender=0x24cf5d0,
from_signal_index=value optimized out, to_signal_index=4, argv=0x283fd11) at
kernel/qobject.cpp:3120
#23 0x7f30c7374821 in KIO::ConnectionPrivate::dequeue (this=0x15a1b50) at
../../kio/kio/connection.cpp:82
#24 0x7f30c7374c7a in KIO::Connection::qt_metacall (this=0x24cf5d0,
_c=QMetaObject::InvokeMetaMethod, _id=44480384, _a=0x1761d20) at
./connection.moc:72
#25 0x7f30c9b6feb8 in QObject::event (this=0x24cf5d0, e=0x26f5430) at
kernel/qobject.cpp:1118
#26 0x7f30c8f9d4fd in QApplicationPrivate::notify_helper (this=0x155e4f0,
receiver=0x24cf5d0, e=0x26f5430) at kernel/qapplication.cpp:4057
#27 0x7f30c8fa577a in QApplication::notify (this=0x7fffd32905c0,
receiver=0x24cf5d0, e=0x26f5430) at kernel/qapplication.cpp:4022
#28 0x7f30ca4e755b in KApplication::notify (this=0x7fffd32905c0,
receiver=0x24cf5d0, event=0x26f5430

[Bug 181473] Maximization of Akregator when KMail has system tray icon fails

2009-05-23 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=181473


Raúl rasas...@gmail.com changed:

   What|Removed |Added

 CC||rasas...@gmail.com




-- 
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 191188] New: akregator doesn't scroll correctly on last element from a feed

2009-04-30 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=191188

   Summary: akregator doesn't scroll correctly on last element
from a feed
   Product: kontact
   Version: 1.4.2
  Platform: unspecified
OS/Version: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: rasas...@gmail.com


Version:   1.4.2 (using 4.2.2 (KDE 4.2.2), Debian packages)
Compiler:  cc
OS:Linux (x86_64) release 2.6.29-toi3

I sort feed articles to that the top is the most recent one and start reading
from the older as I press '-' (next unread article). If the article list is
long as you approach to top article, akregator automatically scrolls down the
article list so you can go on reading the hader of the more unread recent ones.
When article list nears end the scroll stops. When this happens you should see
all unread articles remaining. This was true on akregator3 but it is not on
akregator shipped with kde4.2.2.

Currently the list scrolls to more recent unread but one which remains hidden
unless you explicitly scroll down the article list.

Find attached some screenshots.

-- 
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 191188] akregator doesn't scroll correctly on last element from a feed

2009-04-30 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=191188





--- Comment #1 from Raúl rasasi78 gmail com  2009-05-01 02:12:03 ---
Created an attachment (id=33253)
 -- (http://bugs.kde.org/attachment.cgi?id=33253)
Article list approaching the end of the unread articles.

-- 
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 191188] akregator doesn't scroll correctly on last element from a feed

2009-04-30 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=191188





--- Comment #2 from Raúl rasasi78 gmail com  2009-05-01 02:12:57 ---
Created an attachment (id=33254)
 -- (http://bugs.kde.org/attachment.cgi?id=33254)
Article list showing the most recent article not seen 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 191194] New: kontact crashes after being some time offline, possibly akregator fault

2009-04-30 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=191194

   Summary: kontact crashes after being some time offline,
possibly akregator fault
   Product: kmail
   Version: 1.11.2
  Platform: unspecified
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kdepim-bugs@kde.org
ReportedBy: rasas...@gmail.com


Version:   1.11.2 (using 4.2.2 (KDE 4.2.2), Debian packages)
Compiler:  cc
OS:Linux (x86_64) release 2.6.29-toi3

Hello:

  I run akregator part inside kontact quite happily at home online. I then
hibernate and when system resumes I'm offline. After having akregator being
some time trying to fetch the feeds and even sometimes freezing temporarily, t
will eventually crash. This is the bactrace:

Aplicación: Kontact (kontact), señal SIGSEGV
0x7f3fe3df88d1 in nanosleep () from /lib/libc.so.6
Current language:  auto; currently c
[Current thread is 0 (LWP 5616)]

Thread 4 (Thread 0x7f3fc4344950 (LWP 5965)):
#0  0x7f3fe3e21b22 in select () from /lib/libc.so.6
#1  0x7f3fe503f756 in QProcessManager::run (this=0x20d7f50) at
io/qprocess_unix.cpp:301
#2  0x7f3fe4f77162 in QThreadPrivate::start (arg=0x20d7f50) at
thread/qthread_unix.cpp:185
#3  0x7f3fde3e7faa in start_thread (arg=value optimized out) at
pthread_create.c:297
#4  0x7f3fe3e282cd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#5  0x in ?? ()

Thread 3 (Thread 0x7f3fc615f950 (LWP 8756)):
#0  __lll_lock_wait_private () at
../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:91
#1  0x7f3fe3dd164e in _L_lock_3848 () from /lib/libc.so.6
#2  0x7f3fe3dcdceb in *__GI___libc_free (mem=0x7f3fe40a8a00) at
malloc.c:3623
#3  0x7f3fde63589a in ?? () from /usr/lib/libglib-2.0.so.0
#4  0x7f3fe50881e2 in ~QEventDispatcherGlib (this=0x4f86e80) at
kernel/qeventdispatcher_glib.cpp:281
#5  0x7f3fe4f7722c in QThreadPrivate::finish (arg=value optimized out) at
thread/qthread_unix.cpp:209
#6  0x7f3fe4f7716a in QThreadPrivate::start (arg=0x3cede20) at
/usr/include/pthread.h:533
#7  0x7f3fde3e7faa in start_thread (arg=value optimized out) at
pthread_create.c:297
#8  0x7f3fe3e282cd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#9  0x in ?? ()

Thread 2 (Thread 0x7f3fc3767950 (LWP 8757)):
#0  __lll_lock_wait_private () at
../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:91
#1  0x7f3fe3dd164e in _L_lock_3848 () from /lib/libc.so.6
#2  0x7f3fe3dcdceb in *__GI___libc_free (mem=0x7f3fe40a8a00) at
malloc.c:3623
#3  0x7f3fde63589a in ?? () from /usr/lib/libglib-2.0.so.0
#4  0x7f3fe50881e2 in ~QEventDispatcherGlib (this=0x3ce33f0) at
kernel/qeventdispatcher_glib.cpp:281
#5  0x7f3fe4f7722c in QThreadPrivate::finish (arg=value optimized out) at
thread/qthread_unix.cpp:209
#6  0x7f3fe4f7716a in QThreadPrivate::start (arg=0x3d364a0) at
/usr/include/pthread.h:533
#7  0x7f3fde3e7faa in start_thread (arg=value optimized out) at
pthread_create.c:297
#8  0x7f3fe3e282cd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#9  0x in ?? ()
Current language:  auto; currently asm

Thread 1 (Thread 0x7f3fe6631750 (LWP 5616)):
[KCrash Handler]
#5  malloc_consolidate (av=0x7f3fe40a8a00) at malloc.c:4897
#6  0x7f3fe3dcec0e in _int_malloc (av=0x7f3fe40a8a00, bytes=1025) at
malloc.c:4229
#7  0x7f3fe3dcfef4 in _int_realloc (av=value optimized out,
oldmem=0x3fe4f30, bytes=value optimized out) at malloc.c:5035
#8  0x7f3fe3dd0e5f in *__GI___libc_realloc (oldmem=0x3fe4f30, bytes=1024)
at malloc.c:3708
#9  0x7f3fe4f9915b in QListData::realloc (this=0x7fffee77e580, alloc=value
optimized out) at tools/qlistdata.cpp:107
#10 0x7f3fe4f9936b in QListData::append (this=0x7fffee77e580) at
tools/qlistdata.cpp:127
#11 0x7f3fc9cd4310 in QListAkregator::Article::append
(this=0x7fffee77e580, t...@0x712d1a8) at /usr/include/qt4/QtCore/qlist.h:418
#12 0x7f3fc9cd in QHashQString, Akregator::Article::values
(this=0x70b9818) at /usr/include/qt4/QtCore/qhash.h:675
#13 0x7f3fc9cce799 in Akregator::Feed::fetch (this=0x70bc5a0,
followDiscovery=false) at ../../../akregator/src/feed.cpp:575
#14 0x7f3fc9ce24fc in Akregator::FetchQueue::fetchNextFeed (this=0x300a080)
at ../../../akregator/src/fetchqueue.cpp:91
#15 0x7f3fc9ce2568 in Akregator::FetchQueue::feedDone (this=0x300a080,
f=0x6e5eab0) at ../../../akregator/src/fetchqueue.cpp:126
#16 0x7f3fc9ce290f in Akregator::FetchQueue::qt_metacall (this=0x300a080,
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, _a=0x7fffee77e730)
at ./fetchqueue.moc:88
#17 0x7f3fe50736e4 in QMetaObject::activate (sender=0x6e5eab0,
from_signal_index=value optimized out, to_signal_index=13, argv=0x5049490) at
kernel/qobject.cpp:3031
#18 0x7f3fc9cce102 in Akregator::Feed::fetchError 

[Bug 146994] Crash after quiting Kopete (changed presence info)

2009-04-16 Thread Raúl
https://bugs.kde.org/show_bug.cgi?id=146994





--- Comment #8 from Raúl rasasi78 gmail com  2009-04-16 19:55:19 ---
I haven't seen this bug for quite some time, and I'm unable to reproduce. I'm
recently on kde4, not much experience with it yet, but I'd say this isn't
applicable on kde4 since dcop it's gone.

HTH,

-- 
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 168800] Crash reading IMAP email

2008-11-19 Thread Raúl
http://bugs.kde.org/show_bug.cgi?id=168800


Raúl rasasi78 gmail com changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Comment #1 from Raúl rasasi78 gmail com  2008-11-19 13:49:34 ---
Also looks somewhat similar to https://bugs.kde.org/show_bug.cgi?id=127107


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


[Bug 126715] Crash after fresh startup and selecting mail

2008-11-19 Thread Raúl
http://bugs.kde.org/show_bug.cgi?id=126715


Raúl rasasi78 gmail com changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Comment #102 from Raúl rasasi78 gmail com  2008-11-19 13:59:05 ---
@Suzanne: your last comment with backtrace doesn't seem to be the same problem
as the one detailed in this bug report, if you still experience it, please open
another bug report.
Thanks.


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


[Bug 169925] Crash on message deletion

2008-11-07 Thread Raúl
http://bugs.kde.org/show_bug.cgi?id=169925


Raúl rasasi78 gmail com changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Comment #4 from Raúl rasasi78 gmail com  2008-11-07 12:44:38 ---
Confirmed on 1.10.1 (kde 4.1.2). Please, tell me if you want a full backtrace.


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


[Bug 142937] KMail crashes when attempting to create folder with slash in its name

2008-11-07 Thread Raúl
http://bugs.kde.org/show_bug.cgi?id=142937


Raúl rasasi78 gmail com changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Comment #11 from Raúl rasasi78 gmail com  2008-11-07 12:41:33 ---
Still alive in kmail 1.10.1 on kde 4.1.2. See attached freshen backtrace:

Application: KMail (kmail), signal SIGSEGV
[Thread debugging using libthread_db enabled]
[New Thread 0x7f0054edb6f0 (LWP 11076)]
[New Thread 0x41c2d950 (LWP 22331)]
[KCrash handler]
#5  0x7f0051f48596 in fseek () from /lib/libc.so.6
#6  0x7f00546a030d in KMMsgDict::writeFolderIds (
this=value optimized out, [EMAIL PROTECTED])
at /tmp/buildd/kdepim-4.1.2/kmail/kmmsgdict.cpp:561
#7  0x7f00546a6ab0 in FolderStorage::invalidateFolder (this=0x51ed850)
at /tmp/buildd/kdepim-4.1.2/kmail/folderstorage.cpp:1014
#8  0x7f00546a6b50 in FolderStorage::readFolderIdsFile (this=0x51ed850)
at /tmp/buildd/kdepim-4.1.2/kmail/folderstorage.cpp:1001
#9  0x7f005467e3e1 in KMFolder (this=0x382a720, aParent=0x29b8d70, 
[EMAIL PROTECTED], aFolderType=value optimized out, 
withIndex=value optimized out, exportedSernums=value optimized out)
at /tmp/buildd/kdepim-4.1.2/kmail/kmfolder.cpp:146
#10 0x7f00546c7943 in KMFolderDir::createFolder (this=0x29b8d70, 
[EMAIL PROTECTED], aSysFldr=false, 
aFolderType=KMFolderTypeCachedImap)
at /tmp/buildd/kdepim-4.1.2/kmail/kmfolderdir.cpp:106
#11 0x7f0054775d55 in
KMFolderCachedImap::createFoldersNewOnServerAndFinishListing (this=0x29a32b0,
foldersNewOnServer=
{{p = 0x7fff5d0273d0, d = 0x7fff5d0273d0}})
at /tmp/buildd/kdepim-4.1.2/kmail/kmfoldercachedimap.cpp:2183
#12 0x7f005476d9c1 in KMFolderCachedImap::listDirectory2 (this=0x29a32b0)
at /tmp/buildd/kdepim-4.1.2/kmail/kmfoldercachedimap.cpp:2173
#13 0x7f00547707d9 in KMFolderCachedImap::serverSyncInternal (
this=0x29a32b0)
at /tmp/buildd/kdepim-4.1.2/kmail/kmfoldercachedimap.cpp:910
#14 0x7f0054771598 in KMFolderCachedImap::slotRescueDone (this=0x29a32b0, 
command=value optimized out)
at /tmp/buildd/kdepim-4.1.2/kmail/kmfoldercachedimap.cpp:3067
#15 0x7f0054771aa2 in KMFolderCachedImap::slotListResult (this=0x29a32b0, 
folderNames=value optimized out, [EMAIL PROTECTED], 
[EMAIL PROTECTED], [EMAIL PROTECTED], 
[EMAIL PROTECTED])
at /tmp/buildd/kdepim-4.1.2/kmail/kmfoldercachedimap.cpp:2028
#16 0x7f005477c684 in KMFolderCachedImap::qt_metacall (this=0x29a32b0, 
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, 
_a=0x7fff5d028050)
at
/tmp/buildd/kdepim-4.1.2/obj-x86_64-linux-gnu/kmail/kmfoldercachedimap.moc:220
#17 0x7f005340c6d4 in QMetaObject::activate (sender=0x3008df0, 
from_signal_index=value optimized out, to_signal_index=12, 
argv=0x39c3a30) at kernel/qobject.cpp:3031
#18 0x7f005463a062 in KMail::ListJob::receivedFolders (this=0x3008df0, 
_t1=value optimized out, _t2=value optimized out, [EMAIL PROTECTED], 
[EMAIL PROTECTED], [EMAIL PROTECTED])
at /tmp/buildd/kdepim-4.1.2/obj-x86_64-linux-gnu/kmail/listjob.moc:89
#19 0x7f005463b0db in KMail::ListJob::slotListResult (this=0x3008df0, 
job=0x5303dd0) at /tmp/buildd/kdepim-4.1.2/kmail/listjob.cpp:181
#20 0x7f005463c747 in KMail::ListJob::qt_metacall (this=0x3008df0, 
_c=QMetaObject::InvokeMetaMethod, _id=1, _a=0x7fff5d028310)
at /tmp/buildd/kdepim-4.1.2/obj-x86_64-linux-gnu/kmail/listjob.moc:76
#21 0x7f005340c6d4 in QMetaObject::activate (sender=0x5303dd0, 
from_signal_index=value optimized out, to_signal_index=7, 
argv=0x39c3a30) at kernel/qobject.cpp:3031
#22 0x7f00537d4a72 in KJob::result (this=0x80001, _t1=0x5303dd0)
at /tmp/buildd/kde4libs-4.1.2/obj-x86_64-linux-gnu/kdecore/kjob.moc:186
#23 0x7f00537d4e37 in KJob::emitResult (this=0x5303dd0)
at /tmp/buildd/kde4libs-4.1.2/kdecore/jobs/kjob.cpp:290
#24 0x7f004e59e1f0 in KIO::SimpleJob::slotFinished (this=0x5303dd0)
at /tmp/buildd/kde4libs-4.1.2/kio/kio/job.cpp:498
#25 0x7f004e59e325 in KIO::ListJob::slotFinished (this=0x5303dd0)
at /tmp/buildd/kde4libs-4.1.2/kio/kio/job.cpp:2393
#26 0x7f004e5a4f1d in KIO::ListJob::qt_metacall (this=0x5303dd0, 
_c=QMetaObject::InvokeMetaMethod, _id=value optimized out, 
_a=0x7fff5d028650)
at /tmp/buildd/kde4libs-4.1.2/obj-x86_64-linux-gnu/kio/jobclasses.moc:747
#27 0x7f005340c6d4 in QMetaObject::activate (sender=0x3427bf0, 
from_signal_index=value optimized out, to_signal_index=8, 
argv=0x39c3a30) at kernel/qobject.cpp:3031
#28 0x7f004e65a9f1 in KIO::SlaveInterface::dispatch (this=0x3427bf0, 
_cmd=104, rawdata=value optimized out)
at /tmp/buildd/kde4libs-4.1.2/kio/kio/slaveinterface.cpp:175
#29 0x7f004e657852 in KIO::SlaveInterface::dispatch (this=0x3427bf0)
at /tmp/buildd/kde4libs-4.1.2/kio