Page MenuHomePhorge
Feed Advanced Search

Aug 1 2016

mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

From the following debug output that was captured after the problem appeared, we can see that the notifications indeed seem to pile up in the NotificationManager for some reason.

Aug 1 2016, 12:23 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM

Jul 28 2016

mollekopf added a comment to T1387: The kolab resource constantly re-syncs complete folders..

dev/noRealMessageCount disables all codepaths that rely on the message count. If that performs adequately, then we could just be using that.

Jul 28 2016, 10:14 PM · KDE PIM, Restricted Project
mollekopf assigned T1387: The kolab resource constantly re-syncs complete folders. to knauss.
Jul 28 2016, 10:13 PM · KDE PIM, Restricted Project
mollekopf moved T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that) from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jul 28 2016, 10:13 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf reassigned T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that) from mollekopf to knauss.
Jul 28 2016, 10:13 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf committed rKP18e965e4a636: Prepare release of kdepim-4.13.0.23 (authored by mollekopf).
Prepare release of kdepim-4.13.0.23
Jul 28 2016, 9:50 PM
mollekopf committed rA884f4e9e7c7a: Prepare release of akonadi-1.12.42.11 (authored by mollekopf).
Prepare release of akonadi-1.12.42.11
Jul 28 2016, 9:50 PM
mollekopf committed rKP4b3b3bc3fe7a: Avoid bringing up the selftest dialog after the restart. (authored by mollekopf).
Avoid bringing up the selftest dialog after the restart.
Jul 28 2016, 8:14 PM
mollekopf committed rKP56be801a554c: Added an action to restart the akonadi server (authored by mollekopf).
Added an action to restart the akonadi server
Jul 28 2016, 8:07 PM
mollekopf added a comment to T1303: Kontact doesn't display some events.

This is apparently a synchronization issue.
We're currently waiting for more information (see otrs).

Jul 28 2016, 8:03 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, KDE PIM, Restricted Project
mollekopf committed rKPRdb9c8588a916: Avoid using realMessageCount as it will start continuously resyncing the full… (authored by mollekopf).
Avoid using realMessageCount as it will start continuously resyncing the full…
Jul 28 2016, 6:31 PM
mollekopf added a comment to T1387: The kolab resource constantly re-syncs complete folders..

In imap/retrieveitemstask.cpp:

Jul 28 2016, 6:11 PM · KDE PIM, Restricted Project
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

With the latest version it is now possible to introspect the notificationManager with:

Jul 28 2016, 6:07 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf committed rA98a9ed5cf941: Added some more introspection functions on NotificationManager (authored by mollekopf).
Added some more introspection functions on NotificationManager
Jul 28 2016, 6:02 PM
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

appendAndCompress only optimizes collection modifications, so that's not it.

Jul 28 2016, 3:03 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

Akonadiconsole subscribes in notificationmodel.cpp directly to dbus, so it's unlikely that this is the reason.

Jul 28 2016, 3:00 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

Some additional checks that could be done:

Jul 28 2016, 2:32 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

Given that we do see some unrelated sync operations including non-SILENT modifications in the log, but still no notifications in akonadiconsole we can conclude that this is a problem where the akonadiserver fails to send any notifications to any process.

Jul 28 2016, 2:13 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

The current hypothesis is:

  • The DataStore does a reestablishConnectionIfLost because we lost the connection to the mysql server while a transaction was ongoing.
  • m_transactionLevel is never reset to 0 so remains > 0
  • commitTransaction get's m_transactionLevel > 1 and thus never emits transactionComitted
  • NotificationCollector::dispatchNotification is always in transaction and thus always enqueues new notifications, and never emits them since it's waiting on transactionCommitted.

DataStore is a thread-local singleton that also instantiates NotificationCollector which would explain why this behavior is observed only for the session of kontact.
It doesn't explain why a restart of kontact isn't enough to fix the situation though it seems?

Jul 28 2016, 1:22 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf raised the priority of T1387: The kolab resource constantly re-syncs complete folders. from 40 to High.
Jul 28 2016, 1:07 PM · KDE PIM, Restricted Project
mollekopf created T1387: The kolab resource constantly re-syncs complete folders..
Jul 28 2016, 1:07 PM · KDE PIM, Restricted Project

Jul 27 2016

mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

The current hypothesis is:

  • The DataStore does a reestablishConnectionIfLost because we lost the connection to the mysql server while a transaction was ongoing.
  • m_transactionLevel is never reset to 0 so remains > 0
  • commitTransaction get's m_transactionLevel > 1 and thus never emits transactionComitted
  • NotificationCollector::dispatchNotification is always in transaction and thus always enqueues new notifications, and never emits them since it's waiting on transactionCommitted.
Jul 27 2016, 5:42 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

From the latest information provided (otrs 07/20/2016 13:03:24):

  • The UID STORE +FLAGS command is successfully executed and we can see the FETCH (REV 2) response)
  • The Job Tracker also reports the ItemModifyJob as successful
  • No notifications at all are visible in the notification monitor
  • The "INSERT INTO PimItemFlagRelation ..." command is successfully executed as recorded by the querydebugger.
Jul 27 2016, 4:23 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf placed T1303: Kontact doesn't display some events up for grabs.
Jul 27 2016, 3:19 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, KDE PIM, Restricted Project
mollekopf lowered the priority of T1303: Kontact doesn't display some events from High to 60.
Jul 27 2016, 3:19 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, KDE PIM, Restricted Project
mollekopf moved T1295: Interval sync of imap resource doesn't work. from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jul 27 2016, 3:17 PM · Sprint 201626, Restricted Project, Restricted Project, KDE PIM

Jul 19 2016

mollekopf moved T1359: Synchronization benchmark from Backlog to Doing on the Sprint 201628 board.
Jul 19 2016, 11:28 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube
mollekopf created T1359: Synchronization benchmark.
Jul 19 2016, 11:28 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube

Jul 14 2016

mollekopf added inline comments to D196: A new libmessageparser interface.
Jul 14 2016, 3:53 PM · Kube
mollekopf added inline comments to D196: A new libmessageparser interface.
Jul 14 2016, 3:27 PM · Kube
mollekopf added inline comments to D196: A new libmessageparser interface.
Jul 14 2016, 2:32 PM · Kube
mollekopf committed rKPc97962a13fd2: Prepare release of kdepim-4.13.0.22 (authored by mollekopf).
Prepare release of kdepim-4.13.0.22
Jul 14 2016, 2:03 PM
mollekopf committed rAf49ff8379163: Prepare release of akonadi-1.12.42.10 (authored by mollekopf).
Prepare release of akonadi-1.12.42.10
Jul 14 2016, 2:00 PM
mollekopf committed rKPL9669059bfc5b: Prepare release of kdepimlibs-4.13.0.28 (authored by mollekopf).
Prepare release of kdepimlibs-4.13.0.28
Jul 14 2016, 1:56 PM
mollekopf retitled D196: A new libmessageparser interface from
Jul 14 2016, 1:21 PM · Kube
mollekopf raised the priority of T1324: Crash while booking empty resource from 60 to High.
Jul 14 2016, 11:23 AM · Sprint 201626, Restricted Project, KDE PIM
mollekopf raised the priority of T1328: First event of weekly series not visible from 60 to High.
Jul 14 2016, 11:22 AM · Restricted Project, Sprint 201626, KDE PIM
mollekopf raised the priority of T1327: Search only in working time has no effect from 60 to High.
Jul 14 2016, 11:22 AM · Restricted Project, Sprint 201626, KDE PIM
mollekopf moved T1324: Crash while booking empty resource from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jul 14 2016, 11:08 AM · Sprint 201626, Restricted Project, KDE PIM
mollekopf moved T1328: First event of weekly series not visible from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jul 14 2016, 11:08 AM · Restricted Project, Sprint 201626, KDE PIM
mollekopf moved T1329: Mail tag synchronization error from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jul 14 2016, 11:07 AM · Restricted Project, Sprint 201626, KDE PIM
mollekopf moved T1327: Search only in working time has no effect from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jul 14 2016, 11:07 AM · Restricted Project, Sprint 201626, KDE PIM
mollekopf moved T1349: Ensure the IMAP resource is fully usable with an actual imap server from Backlog to Doing on the Sprint 201628 board.
Jul 14 2016, 8:56 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube
mollekopf moved T1350: Fix scaling issues of the mail view from Doing to Review on the Sprint 201628 board.
Jul 14 2016, 8:56 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube
mollekopf moved T1348: React to new resources in queries from Backlog to Review on the Sprint 201628 board.
Jul 14 2016, 8:56 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube

Jul 13 2016

mollekopf moved T1350: Fix scaling issues of the mail view from Backlog to Doing on the Sprint 201628 board.
Jul 13 2016, 2:04 PM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube
mollekopf assigned T1341: FreeBusy shows as unknown if resource doesn't have any event to knauss.
Jul 13 2016, 2:03 PM · Restricted Project, KDE PIM

Jul 12 2016

mollekopf moved T1344: Kube/Sink: Notification system from Doing to Done on the Sprint 201628 board.
Jul 12 2016, 9:43 AM · Sprint 201628, Sprint 201627, Kube
mollekopf created T1350: Fix scaling issues of the mail view .
Jul 12 2016, 9:31 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube
mollekopf created T1349: Ensure the IMAP resource is fully usable with an actual imap server.
Jul 12 2016, 9:30 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube
mollekopf created T1348: React to new resources in queries.
Jul 12 2016, 9:30 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Kube

Jul 11 2016

mollekopf committed rKPR71bf3bb46043: Prepare release of 4.13.0.1 (authored by mollekopf).
Prepare release of 4.13.0.1
Jul 11 2016, 2:17 PM
mollekopf moved T1343: Sink: Improve logging system from Backlog to Done on the Sprint 201628 board.
Jul 11 2016, 11:56 AM · Sprint 201628, Sprint 201627, Kube

Jul 7 2016

mollekopf added a comment to T1300: Crash when closing kontact.

Judging from the backtrace it could be that we have calls to exec that execute the eventloop:

Jul 7 2016, 11:12 AM · Restricted Project, KDE PIM
mollekopf added a comment to T1300: Crash when closing kontact.

Another potentially related crash:
https://support.kolabsys.com/provider?Action=AgentTicketZoom&TicketID=22211

Jul 7 2016, 11:08 AM · Restricted Project, KDE PIM
mollekopf raised the priority of T1346: Memory leak in kolab resource from 40 to 60.
Jul 7 2016, 10:10 AM · KDE PIM
mollekopf moved T1346: Memory leak in kolab resource from Backlog to Need Resolution on the KDE PIM board.
Jul 7 2016, 10:10 AM · KDE PIM
mollekopf created T1346: Memory leak in kolab resource.
Jul 7 2016, 10:10 AM · KDE PIM

Jul 4 2016

mollekopf moved T1344: Kube/Sink: Notification system from Backlog to Doing on the Sprint 201627 board.
Jul 4 2016, 3:05 PM · Sprint 201628, Sprint 201627, Kube
mollekopf created T1344: Kube/Sink: Notification system.
Jul 4 2016, 10:44 AM · Sprint 201628, Sprint 201627, Kube
mollekopf added a comment to T1338: Simplify mimetree parts as we get them from the mimetreeparser.

Here's where I see the purpose in libmessageparser:

Jul 4 2016, 10:29 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Kube
mollekopf removed a project from T1328: First event of weekly series not visible: Sprint 201627.
Jul 4 2016, 10:01 AM · Restricted Project, Sprint 201626, KDE PIM
mollekopf removed a project from T1323: Kontact crash while trying to edit a calendar event: Sprint 201627.
Jul 4 2016, 10:00 AM · Sprint 201626, Restricted Project, KDE PIM
mollekopf closed T1331: Get trash and drafts on imap to work as Resolved.
Jul 4 2016, 10:00 AM · Sprint 201627, Sprint 201626, Kube
mollekopf removed a project from T1295: Interval sync of imap resource doesn't work.: Sprint 201627.
Jul 4 2016, 10:00 AM · Sprint 201626, Restricted Project, Restricted Project, KDE PIM
mollekopf closed T1325: Fix crash in kimap as Resolved.
Jul 4 2016, 9:59 AM · Sprint 201627, Restricted Project, Restricted Project, Sprint 201626, KDE PIM
mollekopf edited projects for T1343: Sink: Improve logging system, added: Sprint 201627; removed Sprint 201628.
Jul 4 2016, 9:57 AM · Sprint 201628, Sprint 201627, Kube
mollekopf added a project to T1343: Sink: Improve logging system: Sprint 201628.
Jul 4 2016, 9:56 AM · Sprint 201628, Sprint 201627, Kube
mollekopf created T1343: Sink: Improve logging system.
Jul 4 2016, 9:56 AM · Sprint 201628, Sprint 201627, Kube

Jul 1 2016

mollekopf raised the priority of T1341: FreeBusy shows as unknown if resource doesn't have any event from 40 to 60.
Jul 1 2016, 1:22 PM · Restricted Project, KDE PIM
mollekopf created T1341: FreeBusy shows as unknown if resource doesn't have any event.
Jul 1 2016, 1:21 PM · Restricted Project, KDE PIM
mollekopf moved T1331: Get trash and drafts on imap to work from Backlog to Review on the Sprint 201626 board.
Jul 1 2016, 9:10 AM · Sprint 201627, Sprint 201626, Kube

Jun 30 2016

mollekopf moved T1330: Get KAsync changes upstream from Backlog to Done on the Sprint 201626 board.
Jun 30 2016, 12:03 PM · Sprint 201626, Kube
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

We could be chasing the wrong problem:
If the mail that this was tested with was internally already marked as read, then addFlags may have set flagsChanged to false, which would keep the changes empty, which would keep us out of the branch that sends the FETCH response, which makes the whole argument moot.

Jun 30 2016, 9:33 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf added a comment to T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that).

This is what we get in the debugger in the error state when trying to mark a mail as read:

kontact-1644948879 (0x7f0cb8012b60) 7421 UID STORE 86696 NOREV (+FLAGS (\SEEN)) 
kontact-1644948879 (0x7f0cb8012b60) 7421 OK DATETIME "23-Jun-2016 11:36:58 +0000" STORE completed
Jun 30 2016, 9:13 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM

Jun 29 2016

mollekopf accepted D193: A changed Tag at the server may delete members..
Jun 29 2016, 6:24 PM
mollekopf accepted D191: check selectedItem before return..
Jun 29 2016, 6:22 PM
mollekopf accepted D190: Trigger freeSlotsAvailable also for an empty result..
Jun 29 2016, 6:22 PM

Jun 28 2016

mollekopf updated the task description for T1338: Simplify mimetree parts as we get them from the mimetreeparser.
Jun 28 2016, 10:33 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Kube
mollekopf updated the task description for T1338: Simplify mimetree parts as we get them from the mimetreeparser.
Jun 28 2016, 10:33 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Kube
mollekopf added a comment to T1338: Simplify mimetree parts as we get them from the mimetreeparser.

The example comes from the "OpenPGP encrypted one signed and one unsigned attachment"

Jun 28 2016, 10:20 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Kube
mollekopf assigned T1338: Simplify mimetree parts as we get them from the mimetreeparser to knauss.

Sandro, please add your thoughts and comments on the issue.

Jun 28 2016, 10:11 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Kube
mollekopf created T1338: Simplify mimetree parts as we get them from the mimetreeparser.
Jun 28 2016, 10:10 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Kube
mollekopf closed T1284: Sorting mail should not change the selected email as Wontfix.
Jun 28 2016, 9:57 AM · Restricted Project, KDE PIM, Architecture & Design
mollekopf added a comment to T1284: Sorting mail should not change the selected email.

This is a wontfix

Jun 28 2016, 9:57 AM · Restricted Project, KDE PIM, Architecture & Design
mollekopf moved T1302: Kontact generates invitations that are incompatible with outlook from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jun 28 2016, 9:56 AM · KDE PIM, Restricted Project
mollekopf moved T1303: Kontact doesn't display some events from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jun 28 2016, 9:56 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, KDE PIM, Restricted Project
mollekopf moved T1321: Kontact stops responding to any modifications until akonadi is restarted (but keeps working other than that) from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jun 28 2016, 9:56 AM · Sprint 201640, Sprint 201639, Sprint 201638, Sprint 201637, Sprint 201636, Sprint 201635, Sprint 201632, Sprint 201630, Sprint 201628, Sprint 201627, Sprint 201626, Restricted Project, KDE PIM
mollekopf lowered the priority of T1295: Interval sync of imap resource doesn't work. from High to 40.
Jun 28 2016, 9:56 AM · Sprint 201626, Restricted Project, Restricted Project, KDE PIM
mollekopf moved T1325: Fix crash in kimap from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jun 28 2016, 9:56 AM · Sprint 201627, Restricted Project, Restricted Project, Sprint 201626, KDE PIM
mollekopf closed T1203: Avoid duplicates by GID/RID as Resolved.
Jun 28 2016, 9:56 AM · Restricted Project, Restricted Project, KDE PIM
mollekopf closed T1238: Kontact LDAP password not saved as Resolved.
Jun 28 2016, 9:56 AM · Restricted Project, KDE PIM, Bug Reports
mollekopf closed T1242: Performance problem while loading calendars as Resolved.
Jun 28 2016, 9:56 AM · Restricted Project, KDE PIM
mollekopf closed T1247: kontact categories - colour setting is broken as Resolved.
Jun 28 2016, 9:56 AM · Sprint 201619, Restricted Project, KDE PIM, Bug Reports
mollekopf closed T1240: Error messages in EventViews::AgendaView::Private::calendarIncidenceChanged: as Resolved.
Jun 28 2016, 9:56 AM · Restricted Project, KDE PIM
mollekopf closed T1304: Kontact generates too much debug output as Resolved.
Jun 28 2016, 9:56 AM · Restricted Project, KDE PIM
mollekopf moved T1325: Fix crash in kimap from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jun 28 2016, 9:55 AM · Sprint 201627, Restricted Project, Restricted Project, Sprint 201626, KDE PIM
mollekopf closed T1202: Kontact event double click and right click -> edit as Resolved.
Jun 28 2016, 9:55 AM · Restricted Project, KDE PIM, Bug Reports
mollekopf closed T1225: Endless spinner waiting for Sieve Scripts as Resolved.
Jun 28 2016, 9:55 AM · Restricted Project, Restricted Project, Bug Reports
mollekopf closed T1275: No crypto backend in kontact packaged for ubuntu 14.04? as Resolved.
Jun 28 2016, 9:55 AM · Restricted Project, KDE PIM