[Akonadi] [Bug 377394] Uploading a mail in a remote IMAP folder does not show progress status in Kmail

2017-03-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377394

Daniel Vrátil  changed:

   What|Removed |Added

   Assignee|chrig...@fastmail.fm|dvra...@kde.org
 CC||dvra...@kde.org
 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED

--- Comment #1 from Daniel Vrátil  ---
Upon initial investigation, it turns out this might be really tricky to
implement properly because Qt does not really provide us with any means of
monitoring the progress of data being sent. It simply buffers the entire
payload and passes it to the kernel, which buffers it internally again.

We could maybe try to abuse the way Qt works with its internal buffers and pass
the payload to Qt in several smaller chunks, then we would get notified upon
every chunk being written to the socket and we could check how much data
remains in Qt's the buffer. To get a reasonable progress reporting we would,
however, have to pass the payload in really small chunks. The question is what
is the performance impact (in the terms of upload speed) compared to just
passing the entire payload to the kernel in one piece to deal with it
internally.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 358559] akonadi_imap_resource incorrectly handles RFC 5464

2017-03-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=358559

--- Comment #5 from Daniel Vrátil  ---
Hi,

thanks for the data. Looks like you only uploaded content of one of the files,
there should be (at least) two file and unfortunately, the second one is the
one I really need (sorry if it wasn't clear from my initial request). Could you
please check and also post content of the second file? If the file is too
large, just scroll towards the end to find likes like "A25 BAD Error in
IMAP command GETMETADATA" so you can only paste the last ~10 lines around that
error line. Thanks a lot.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 375410] Can't fetch email from oauth configured GMail account

2017-03-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=375410

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DOWNSTREAM

--- Comment #4 from Daniel Vrátil  ---
Looks like a packaging error, distributions tend to include .so symlinks in
their -dev sub-packages but in this case, we need to have the .so in the main
package, because it's a plugin. Please open a ticket in your distribution's
tracker.

(marking as resolved, this is a downstream/packaging issue)

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 376220] Crash in Akonadi::Monitor::mimeTypesMonitored

2017-10-12 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=376220

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #20 from Daniel Vrátil  ---
The crash is not in Plasma but in a plugin for Plasma which is released as part
of KDE Applications (will be in 17.08.2 which will be released very soon).

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kdelibs4support] [Bug 370223] kdelibs4support 5.27.0 fails to compile with OpenSSL 1.1

2017-10-17 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=370223

Daniel Vrátil  changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/kde
   ||libs4support/9a990c69c60612
   ||6bcd60cd7718462aec2a92460d
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Daniel Vrátil  ---
Git commit 9a990c69c606126bcd60cd7718462aec2a92460d by Daniel Vrátil.
Committed on 17/10/2017 at 07:43.
Pushed by dvratil into branch 'master'.

Make kssl compile against OpenSSL 1.1.0

Summary:
OpenSSL 1.1.0 contains some source-incompatible changes, most notably making
most of the
structures opaque and introducing new getter/setter functions to modify the
structures. This
patch adds some of the newly introduced functions to the KOpenSSL class and
modifies the code to call them. The implementation of those newly introduced
methods contains both OpenSSL < 1.1 compatible code (direct structure member
access) and calls to real functions resolved from OpenSSL>= 1.1 library. Which
implementation is used is decided at compile time. Some of the existing methods
were renamed to match the OpenSSL 1.1 naming and to avoid conflicts with
backward-compatibility names provided by OpenSSL 1.1.

KSSLCertificate::toNetscape() returns empty result when built against OpenSSL
1.1 since I wasn't able to find a proper equivalent in OpenSSL 1.1 API (and
there does not seem to be any).

Test Plan: The code compiles under both OpenSSL 1.1 and OpenSSL 1.0.x. I did
not test the actual functionality.

Reviewers: #frameworks, dfaure

Reviewed By: dfaure

Subscribers: aacid, arojas, fvogt, ltoscano, rdieter, #frameworks

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D6665

M  +271  -35   src/kssl/kopenssl.cpp
M  +63   -13   src/kssl/kopenssl.h
M  +0-4src/kssl/kssl.cpp
M  +2-2src/kssl/ksslcallback.c
M  +15   -36   src/kssl/ksslcertchain.cpp
M  +40   -28   src/kssl/ksslcertificate.cpp

https://commits.kde.org/kdelibs4support/9a990c69c606126bcd60cd7718462aec2a92460d

-- 
You are receiving this mail because:
You are watching all bug changes.

[knotes] [Bug 370750] knotes failed under wayland session but fine under X11

2017-10-17 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=370750

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||5.6.3
  Latest Commit||https://commits.kde.org/kno
   ||tes/f603ffb669f58da5e5ef4a8
   ||c1ef0d5785ed2ec90
 Resolution|--- |FIXED

--- Comment #4 from Daniel Vrátil  ---
Git commit f603ffb669f58da5e5ef4a8c1ef0d5785ed2ec90 by Daniel Vrátil.
Committed on 17/10/2017 at 10:42.
Pushed by dvratil into branch 'Applications/17.08'.

Fix crash on startup on Wayland

The X11-specific code was trying to disable session management by removing
certian ICCC atoms from the top-level window. Instead we just unset the
SESSION_MANAGER env variable, which disables session management directly
in Qt.
FIXED-IN: 5.6.3

M  +3-42   src/apps/main.cpp

https://commits.kde.org/knotes/f603ffb669f58da5e5ef4a8c1ef0d5785ed2ec90

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdevelop] [Bug 373722] New: "Implement function" doesn't consider "using namespace"

2016-12-16 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373722

Bug ID: 373722
   Summary: "Implement function" doesn't consider "using
namespace"
   Product: kdevelop
   Version: git master
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: code completion
  Assignee: kdevelop-bugs-n...@kde.org
  Reporter: dvra...@kde.org
  Target Milestone: ---

When using the "Implement function" feature in code completion in KDevelop, the
generated implementation always includes namespace in the type names, even if
the namespace is already specified with "using namespace" somewhere above.

It would be nice, if the tool would check for "using namespace" in the current
scope and omit the namespace from the generated code.

I think this used to work in the pre-clang version, so would be nice to have it
back :)

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 385052] Cannot connect to the Akonadi service

2017-09-26 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=385052

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #1 from Daniel Vrátil  ---
Sounds like the server is running an incompatible version, or it's just
crashing. Can you check it, please?

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 383263] akonadiconsole unusable on resolutions under 1366x786.

2017-09-29 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=383263

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #11 from Daniel Vrátil  ---
The Browser tab with Internals view simply has too many widgets stacked
vertically that make the window to be too tall. But since this is a developer
tool and no developer has the issue (we all have higher-res screens), this
won't get a very high priority, sorry.


The KMail configuration dialog is another thing, that should get fixed soon.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 376220] Crash in Akonadi::Monitor::mimeTypesMonitored

2017-09-29 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=376220

Daniel Vrátil  changed:

   What|Removed |Added

   Version Fixed In||5.6.2
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://commits.kde.org/kde
   ||pim-addons/6b88cd02467e97ba
   ||9110f39e8f52b584fb9bdc12

--- Comment #18 from Daniel Vrátil  ---
Git commit 6b88cd02467e97ba9110f39e8f52b584fb9bdc12 by Daniel Vrátil.
Committed on 29/09/2017 at 11:36.
Pushed by dvratil into branch 'Applications/17.08'.

Fix memory leak and crash in Plasma events plugin configuration

Don't leak the internal ETM in PIMCalendarsModel. The Monitor is
already parented to the PIMCalendarsModel, but the ETM is not, so
deleting PIMCalendarsModel destroys the Monitor, but the ETM is left
with dangling pointer to the Monitor.
FIXED-IN: 5.6.2

M  +1-1plugins/plasma/pimeventsplugin/pimcalendarsmodel.cpp

https://commits.kde.org/kdepim-addons/6b88cd02467e97ba9110f39e8f52b584fb9bdc12

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 379538] crashes reproducibly on login.

2017-09-29 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=379538

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 360792] akonadi_davgroupware_resource crashes constandly

2017-09-29 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=360792

Daniel Vrátil  changed:

   What|Removed |Added

 CC||jor...@gmail.com

--- Comment #16 from Daniel Vrátil  ---
*** Bug 379538 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 360792] akonadi_davgroupware_resource crashes constandly

2017-09-29 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=360792

Daniel Vrátil  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
   Version Fixed In||5.6.2
 Resolution|--- |FIXED
  Latest Commit||https://commits.kde.org/kde
   ||pim-runtime/a86b0808c1d6553
   ||419aa78b7e104d820991c7080

--- Comment #17 from Daniel Vrátil  ---
Git commit a86b0808c1d6553419aa78b7e104d820991c7080 by Daniel Vrátil.
Committed on 29/09/2017 at 11:58.
Pushed by dvratil into branch 'Applications/17.08'.

DAV: fix crash if Collection disappears during Item fetch
FIXED-IN: 5.6.2

M  +16   -0resources/dav/resource/davgroupwareresource.cpp

https://commits.kde.org/kdepim-runtime/a86b0808c1d6553419aa78b7e104d820991c7080

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 361542] akonadictl fsck seems to hang

2017-10-02 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=361542

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #3 from Daniel Vrátil  ---
akonadictl fsck is supposed to be run when Akonadi is running. Admittably,
running it against stopped Akonadi should produce an error and quit, not hang.
I'll work on that.

http.so are KIO slaves, they are kept around for a while so they can be
effectively reused, but should eventually die on their own if they are unused
for longer period of time.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 361542] akonadictl fsck seems to hang

2017-10-02 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=361542

Daniel Vrátil  changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/ako
   ||nadi/aebf8a1b727c81cb317ceb
   ||f712dc19a8ec3e5944
 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||5.6.2
 Resolution|--- |FIXED

--- Comment #4 from Daniel Vrátil  ---
Git commit aebf8a1b727c81cb317cebf712dc19a8ec3e5944 by Daniel Vrátil.
Committed on 02/10/2017 at 12:23.
Pushed by dvratil into branch 'Applications/17.08'.

akonadictl: fsck and vacuum require running Akonadi
FIXED-IN: 5.6.2

M  +11   -1src/akonadictl/main.cpp

https://commits.kde.org/akonadi/aebf8a1b727c81cb317cebf712dc19a8ec3e5944

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 385052] Cannot connect to the Akonadi service

2017-10-02 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=385052

--- Comment #4 from Daniel Vrátil  ---
All those "Application '/usr/bin/akonadi_imap_resource' crashed. No restart!"
indicate there's something horribly wrong with your setup, very likely version
mismatch or a compilation issue.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 377344] Some emails are duplicated

2017-03-20 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377344

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #3 from Daniel Vrátil  ---
Do you have any local filters? If yes, could you see if maybe disabling them
temporarily prevents the duplicates from appearing?

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 358559] akonadi_imap_resource incorrectly handles RFC 5464

2017-03-20 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=358559

--- Comment #7 from Daniel Vrátil  ---
Thanks. From the logs, it's visible that we *do* adhere to the RFC (DEPTH
infinity), so it's likely a bug on the server side.

You mentioned Cyrus 2.5, but the only place where I could find the error
message you are getting is in an old metadata plugin for Dovecot [0]. Now I
suspect that quoting the infinity keyword might make it work, but I'm hesitant
to implement it as it might break other IMAP servers.




[0] http://hg.dovecot.org/dovecot-metadata-plugin

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 283682] KMail duplicates filtered messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=283682

--- Comment #168 from Daniel Vrátil  ---
*** Bug 322126 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 283682] KMail duplicates filtered messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=283682

Daniel Vrátil  changed:

   What|Removed |Added

 CC||gugs...@free.fr

--- Comment #169 from Daniel Vrátil  ---
*** Bug 377344 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 322126] emails get filtered twice and thus duplicated in kmail2

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=322126

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|CONFIRMED   |RESOLVED
 CC||dvra...@kde.org

--- Comment #14 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 377344] Some emails are duplicated

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377344

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #6 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 322676] massive regression - lots and lots of duplicate emails

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=322676

Daniel Vrátil  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #9 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 283682] KMail duplicates filtered messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=283682

Daniel Vrátil  changed:

   What|Removed |Added

 CC||kol...@aon.at

--- Comment #170 from Daniel Vrátil  ---
*** Bug 322676 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 293918] kmail2 duplicates some messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=293918

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Resolution|--- |DUPLICATE
 Status|CONFIRMED   |RESOLVED

--- Comment #18 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 283682] KMail duplicates filtered messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=283682

Daniel Vrátil  changed:

   What|Removed |Added

 CC||xda...@ngi.it

--- Comment #171 from Daniel Vrátil  ---
*** Bug 293918 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 362398] duplicate mails but different size shown

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=362398

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #9 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 283682] KMail duplicates filtered messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=283682

--- Comment #173 from Daniel Vrátil  ---
*** Bug 362398 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 323980] Duplicate messages if antispam filter enabled

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=323980

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||dvra...@kde.org

--- Comment #8 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 283682] KMail duplicates filtered messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=283682

Daniel Vrátil  changed:

   What|Removed |Added

 CC||lukasz.wojnilow...@gmail.co
   ||m

--- Comment #172 from Daniel Vrátil  ---
*** Bug 323980 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 333035] Supposable timing problem causes duplicate mails after filtering

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=333035

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #9 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 283682] KMail duplicates filtered messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=283682

--- Comment #174 from Daniel Vrátil  ---
*** Bug 333035 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 283682] KMail duplicates filtered messages

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=283682

Daniel Vrátil  changed:

   What|Removed |Added

 CC||pe...@prh.myzen.co.uk

--- Comment #175 from Daniel Vrátil  ---
*** Bug 346695 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 346695] KMail2 generates duplicates of e-mails

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=346695

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||dvra...@kde.org

--- Comment #5 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 377897] Findings from code review

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377897

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Version Fixed In||17.04
  Latest Commit||https://commits.kde.org/ako
   ||nadi/92c529c2cae9f9661b938f
   ||bbbe84a1fa180c832f
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Daniel Vrátil  ---
Git commit 92c529c2cae9f9661b938fbbbe84a1fa180c832f by Daniel Vrátil.
Committed on 22/03/2017 at 00:27.
Pushed by dvratil into branch 'Applications/17.04'.

Fix missing break/return statements

Thanks to Steve Grubb for pointing those out.
FIXED-IN: 17.04

M  +1-0src/core/changerecorder_p.cpp
M  +0-2src/private/protocol.cpp
M  +2-0src/server/handler.cpp

https://commits.kde.org/akonadi/92c529c2cae9f9661b938fbbbe84a1fa180c832f

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 377897] Findings from code review

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377897

--- Comment #2 from Daniel Vrátil  ---
Thanks for the review! 

The leaked FDs are false positives, as the FD is passed into QLocalSocket which
then takes ownership and ensures they are freed when the QLocalSocket is
destroyed.

The "identical branches" warnings are from a generated code (code generated by
Qt during compilation), so nothing I can fix easily.

I fixed the missing return, missing break, and double return issues. Thanks
again!

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 377871] "Filed to write data to stream"

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377871

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 377656] akonadiserver is aborting

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377656

Daniel Vrátil  changed:

   What|Removed |Added

 CC||m...@vowleyfarm.co.uk

--- Comment #5 from Daniel Vrátil  ---
*** Bug 377871 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 377656] akonadiserver is aborting

2017-03-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377656

Daniel Vrátil  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED
 CC||dvra...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 374734] Akonadiserver Crashes While Deleting Email

2017-03-25 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=374734

--- Comment #38 from Daniel Vrátil  ---
(In reply to stefanfrank from comment #34)
> Hi,
> unfortunately the new update to Version 5.4.3 do not solve the problem. I
> still have crashes!
> Best regards

Please provide a new backtrace of the crash.


Regarding the filtering issue, there are another bug reports regarding this,
please report your issue there.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 378187] akonadi_control crashes when starting kontact for the first time

2017-03-28 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378187

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||dvra...@kde.org
 Resolution|--- |INVALID

--- Comment #2 from Daniel Vrátil  ---
That's a fatal error message when akonadi_control cannot connect to DBus
session. Means that there's some problem with your session not starting DBus
properly or not having the environment set, not a bug in Akonadi.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 374795] qt.network.ssl: QSslSocket::startClientEncryption: cannot start handshake on non-plain connection

2017-03-28 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=374795

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 CC||dvra...@kde.org
 Status|CONFIRMED   |RESOLVED

-- 
You are receiving this mail because:
You are watching all bug changes.

[libkgapi] [Bug 375409] Browser can't render (libGL error: failed to create drawable)

2017-03-28 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=375409

--- Comment #1 from Daniel Vrátil  ---
I'm seeing some crashes too, looks like a bug in QtWebEngine.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 377656] akonadiserver has an unhandled protocol exception

2017-04-01 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377656

Daniel Vrátil  changed:

   What|Removed |Added

   Version Fixed In||5.6.1
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED
  Latest Commit||https://commits.kde.org/ako
   ||nadi/da7070a7facb3c2f91c03b
   ||28c36ba5b929b89a42

--- Comment #7 from Daniel Vrátil  ---
Git commit da7070a7facb3c2f91c03b28c36ba5b929b89a42 by Daniel Vrátil.
Committed on 01/04/2017 at 10:31.
Pushed by dvratil into branch 'Applications/17.04'.

Handle nested exceptions during error handling
FIXED-IN: 5.6.1

M  +30   -4src/server/connection.cpp

https://commits.kde.org/akonadi/da7070a7facb3c2f91c03b28c36ba5b929b89a42

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 378436] Instance create job emits result too early

2017-04-04 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378436

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 374734] Akonadiserver Crashes While Deleting Email

2017-04-07 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=374734

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REOPENED|RESOLVED

--- Comment #44 from Daniel Vrátil  ---
The crash should be fixed in 17.04 release.

http://cgit.kde.org/akonadi.git/commit/?id=da7070a7facb3c2f91c03b28c36ba5b929b89a42

Please test against the new version and reopen if you can still reproduce the
crash.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 365753] search results are not updated in the search folder (Last Search)

2017-04-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=365753

Daniel Vrátil  changed:

   What|Removed |Added

 CC||solit...@mail.com

--- Comment #6 from Daniel Vrátil  ---
*** Bug 377499 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 377499] Find Messages not working unless Last Search folder deleted

2017-04-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377499

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||dvra...@kde.org
 Status|CONFIRMED   |RESOLVED

--- Comment #4 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 365753] search results are not updated in the search folder (Last Search)

2017-04-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=365753

Daniel Vrátil  changed:

   What|Removed |Added

   Version Fixed In||5.5.0
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://commits.kde.org/ako
   ||nadi/e32bdeca4e9d9d84175d2a
   ||ecb68c7f333f4ad31c

--- Comment #7 from Daniel Vrátil  ---
Git commit e32bdeca4e9d9d84175d2aecb68c7f333f4ad31c by Daniel Vrátil.
Committed on 08/04/2017 at 10:42.
Pushed by dvratil into branch 'Applications/17.04'.

Update search query from CollectionModifyJob

The Search query is in PersistentSearchAttribute, but the server
cannot inspect that. The Protocol already has properties to send
the search query as part of ModifyCollectionCommand, so let's
use that.
FIXED-IN: 5.5.0

M  +7-0src/core/jobs/collectionmodifyjob.cpp

https://commits.kde.org/akonadi/e32bdeca4e9d9d84175d2aecb68c7f333f4ad31c

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 378766] Akonadi is in a weird state and often crashes after fetching and filtering mails

2017-04-18 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378766

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||dvra...@kde.org
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 377656] akonadiserver has an unhandled protocol exception

2017-04-18 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377656

Daniel Vrátil  changed:

   What|Removed |Added

 CC||micuin...@gmx.de

--- Comment #8 from Daniel Vrátil  ---
*** Bug 378766 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 358559] akonadi_imap_resource incorrectly handles RFC 5464

2017-04-18 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=358559

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #9 from Daniel Vrátil  ---
Hi,

I registered an email account on t-online.de and I can reproduce the error.
They don't mention which IMAP implementation they actually use, so it can be
anything. But since the error message you get matches exactly the one in the
dovecot plugin I mentioned in comment #7, I strongly suspect that is what they
use.

In any case, not even quoting the "infinity" keyword seems to work.

I'm afraid that all you can do is to open a ticket with t-online.de support and
tell them their IMAP implementation is broken.

* OK T-Online IMAP Proxy ready
0 LOGIN  *
0 OK Name is a valid mailbox
1 CAPABILITY
* CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE SORT
SORT=DISPLAY THREAD=REFERENCES THREAD=REFS THREAD=ORDEREDSUBJECT MULTIAPPEND
URL-PARTIAL CATENATE UNSELECT CHILDREN NAMESPACE UIDPLUS LIST-EXTENDED
I18NLEVEL=1 CONDSTORE QRESYNC ESEARCH ESORT SEARCHRES WITHIN CONTEXT=SEARCH
LIST-STATUS BINARY MOVE METADATA XEXPIRE QUOTA
1 OK Capability completed.
2 GETMETADATA (DEPTH infinity) "INBOX" (/shared)
2 BAD Error in IMAP command GETMETADATA: Value 1/1 of DEPTH is not numeric and
positive or "infinity". (RFC 5464 Section 4.2.2) (0.000 + 0.000 secs).
3 GETMETADATA (DEPTH 0) "INBOX" (/shared)
3 NO Iterating metadata failed (0.000 + 0.000 secs).
4 GETMETADATA (DEPTH 1) "INBOX" (/shared)
4 NO Iterating metadata failed (0.000 + 0.000 secs).
5 GETMETADATA (DEPTH 0) "INBOX" (/shared/comment)
5 OK Completed (0.000 + 0.000 secs).


Compared to a Cyrus IMAP:

* OK [CAPABILITY IMAP4rev1 LITERAL+ ID ENABLE AUTH=PLAIN AUTH=LOGIN SASL-IR]
Cyrus IMAP 
0 LOGIN  *
0 OK [CAPABILITY IMAP4rev1 LITERAL+ ID ENABLE ACL RIGHTS=kxten QUOTA
MAILBOX-REFERRALS NAMESPACE UIDPLUS NO_ATOMIC_RENAME UNSELECT CHILDREN
MULTIAPPEND BINARY CATENATE CONDSTORE ESEARCH SORT SORT=MODSEQ SORT=DISPLAY
SORT=UID THREAD=ORDEREDSUBJECT THREAD=REFERENCES ANNOTATEMORE
ANNOTATE-EXPERIMENT-1 METADATA LIST-EXTENDED LIST-STATUS LIST-MYRIGHTS WITHIN
QRESYNC SCAN XLIST XMOVE MOVE SPECIAL-USE CREATE-SPECIAL-USE URLAUTH
URLAUTH=BINARY X-NETSCAPE LOGINDISABLED AUTH=PLAIN AUTH=LOGIN X-QUOTA=STORAGE
X-QUOTA=MESSAGE X-QUOTA=X-ANNOTATION-STORAGE X-QUOTA=X-NUM-FOLDERS IDLE] User
logged in SESSIONID=<*>
1 GETMETADATA (DEPTH infinity) "INBOX" (/shared)
* METADATA INBOX (/shared/thread NIL)
* METADATA INBOX (/shared/specialuse NIL)
* METADATA INBOX (/shared/sort NIL)
* METADATA INBOX (/shared/comment NIL)
* METADATA INBOX (/shared/checkperiod NIL)
* METADATA INBOX (/shared/check NIL)
* METADATA INBOX (/shared NIL)
1 OK Completed
2 GETMETADATA (DEPTH 0) "INBOX" (/shared)
* METADATA INBOX (/shared NIL)
2 OK Completed
3 GETMETADATA (DEPTH 1) "INBOX" (/shared)
* METADATA INBOX (/shared/thread NIL)
* METADATA INBOX (/shared/specialuse NIL)
* METADATA INBOX (/shared/sort NIL)
* METADATA INBOX (/shared/comment NIL)
* METADATA INBOX (/shared/checkperiod NIL)
* METADATA INBOX (/shared/check NIL)
* METADATA INBOX (/shared NIL)
3 OK Completed
4 GETMETADATA (DEPTH 0) "INBOX" (/shared/comment)
* METADATA INBOX (/shared/comment NIL)
4 OK Completed

Feel free to provide the information above in the support ticket.

I'm closing this as "invalid", because it's a provider issue and not a
KIMAP/Akonadi IMAP issue. Sorry we can't be more helpful here.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 311456] imap idle is not working with GSSAPI

2017-04-18 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=311456

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED
  Latest Commit||https://commits.kde.org/kde
   ||pim-runtime/61bee84d8afc425
   ||76d309a616c3894f18c1b964f
   Version Fixed In||5.5.1

--- Comment #8 from Daniel Vrátil  ---
Git commit 61bee84d8afc42576d309a616c3894f18c1b964f by Daniel Vrátil.
Committed on 18/04/2017 at 23:05.
Pushed by dvratil into branch 'Applications/17.04'.

[IMAP] Fix IDLE support with GSSAPI authentication

Only ignore IDLE due to empty password when not using GSSAPI.
With GSSAPI the password field in settings is always empty.
FIXED-IN: 5.5.1

M  +3-1resources/imap/imapresourcebase.cpp

https://commits.kde.org/kdepim-runtime/61bee84d8afc42576d309a616c3894f18c1b964f

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 375146] read -> unread email status changes on server side are never synchronized for IMAP resource

2017-04-18 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=375146

Daniel Vrátil  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED
   Version Fixed In||5.5.1
  Latest Commit||https://commits.kde.org/ako
   ||nadi/e49f49a1eb616b51c22868
   ||53961fe5bcaa4fe758

--- Comment #3 from Daniel Vrátil  ---
Git commit e49f49a1eb616b51c2286853961fe5bcaa4fe758 by Daniel Vrátil.
Committed on 19/04/2017 at 00:30.
Pushed by dvratil into branch 'Applications/17.04'.

Fix clearing Item flags

For instance when an email is marked as unread on an IMAP server, it
means that the \\SEEN flag is removed. If this was the only flag
set on the email, then Akonadi::ItemSync will end up calling
Akonadi::Item::setFlags() with an empty QSet. When the AKAPPEND handler
is in the MERGE mode and runs into an empty Flags field in the
CreateItemCommand it fallsback to checking AddedFlags and RemovedFlags
fields, but those are empty too.

Akonadi::Item internally tracks when setFlags() is called, even with
an empty QSet through flagsOverwritten flag. With this change the
flag is sent as part of the command to the server and the AKAPPEND
handler now falls back to AddedFlags/RemovedFlags fields only if
the flag is false.

This fixes syncing email flags when email state changes from read to
unread on IMAP, but due to how IMAP emails are synced this will only
affect future changes and will not sync existing out-of-sync emails.
FIXED-IN: 5.5.1

M  +3-1autotests/private/protocoltest.cpp
M  +4-1src/core/jobs/itemcreatejob.cpp
M  +21   -4src/private/protocol.cpp
M  +2-0src/private/protocol_p.h
M  +1-1src/server/handler/akappend.cpp

https://commits.kde.org/akonadi/e49f49a1eb616b51c2286853961fe5bcaa4fe758

-- 
You are receiving this mail because:
You are watching all bug changes.

[kimap] [Bug 378876] Cannot connect to Gmail server

2017-04-19 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378876

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Status|UNCONFIRMED |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Daniel Vrátil  ---
Please provide output of "pluginviewer -c"

-- 
You are receiving this mail because:
You are watching all bug changes.

[kimap] [Bug 378876] Cannot connect to Gmail server

2017-04-22 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378876

--- Comment #8 from Daniel Vrátil  ---
Luis,

your KDE installation is not finding the kdexoauth2 SASL plugin. The plugin
must be installed in /usr/lib(64)/sasl2, or you have to point SASL_PATH
environment variable to the location where the plugin is installed (if you
compile into non-standard prefix for instance).


Andrea had a different problem where due to migration issue the IMAP resource
wasn't using the correct authentication mechanism, we sorted that our on IRC.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kimap] [Bug 378876] Cannot connect to Gmail server

2017-04-22 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378876

--- Comment #9 from Daniel Vrátil  ---
Git commit c9ae16363e68d6958db0cd835cb0180b340594b5 by Daniel Vrátil.
Committed on 22/04/2017 at 11:31.
Pushed by dvratil into branch 'Applications/17.04'.

[IMAP] Fix migration to new Gmail authentication

Currently the settings would be migrated only if user opened the
Settings dialog. The GmailPasswordRequester expects that the server
settings is migrated correctly and always tries to authenticate via
XOAUTH2, even if the configuration says "PLAIN" or other mechanism.
This breaks login as we try to send XOAUTH2 tokens as PLAIN credentials.

This change ensures that the encryption and auth mechanism settings
is correctly migrated on resource startup.
Related: bug 378857

M  +12   -0resources/imap/settings.cpp

https://commits.kde.org/kdepim-runtime/c9ae16363e68d6958db0cd835cb0180b340594b5

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 378857] Kmail receive Gmail messages not working

2017-04-22 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378857

--- Comment #3 from Daniel Vrátil  ---
Git commit c9ae16363e68d6958db0cd835cb0180b340594b5 by Daniel Vrátil.
Committed on 22/04/2017 at 11:31.
Pushed by dvratil into branch 'Applications/17.04'.

[IMAP] Fix migration to new Gmail authentication

Currently the settings would be migrated only if user opened the
Settings dialog. The GmailPasswordRequester expects that the server
settings is migrated correctly and always tries to authenticate via
XOAUTH2, even if the configuration says "PLAIN" or other mechanism.
This breaks login as we try to send XOAUTH2 tokens as PLAIN credentials.

This change ensures that the encryption and auth mechanism settings
is correctly migrated on resource startup.
Related: bug 378876

M  +12   -0resources/imap/settings.cpp

https://commits.kde.org/kdepim-runtime/c9ae16363e68d6958db0cd835cb0180b340594b5

-- 
You are receiving this mail because:
You are watching all bug changes.

[neon] [Bug 379089] New: kdepim-runtime is missing libkdexoauth2.so - breaks Gmail login

2017-04-22 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=379089

Bug ID: 379089
   Summary: kdepim-runtime is missing libkdexoauth2.so - breaks
Gmail login
   Product: neon
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: critical
  Priority: NOR
 Component: Packages User Edition
  Assignee: neon-b...@kde.org
  Reporter: dvra...@kde.org
CC: j...@jriddell.org, neon-b...@kde.org, sit...@kde.org
  Target Milestone: ---

kdepim-runtime is compiled with XOAUTH2 support, which produces
libkdexoauth2.so, libkdexoauth2.so.3 and libkdexoauth.so.3.0.0 files. This is a
SASL2 plugin and SASL2 looks only for "*.so" names (without soversion).
kdepim-runtime does not include this file, so SASL2 does not load the XOAUTH2
plugin, which breaks Gmail login for all users.

Most probably affects Dev stable and Dev unstable too.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 378857] Kmail receive Gmail messages not working

2017-04-22 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378857

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |DOWNSTREAM
 Status|UNCONFIRMED |RESOLVED
 CC||dvra...@kde.org

--- Comment #4 from Daniel Vrátil  ---
There's a bug in Kubuntu/Neon packages that breaks Gmail login:
https://bugs.kde.org/show_bug.cgi?id=379089

Closing as downstream issue.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kimap] [Bug 378876] Cannot connect to Gmail server

2017-04-22 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378876

Daniel Vrátil  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |DOWNSTREAM

--- Comment #10 from Daniel Vrátil  ---
There's a bug in Kubuntu/Neon packaging:
https://bugs.kde.org/show_bug.cgi?id=379089

Closing as a downstream issue.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 378858] Crash trying to start akonadi after failed mysql connect

2017-04-23 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=378858

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |UNMAINTAINED
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Daniel Vrátil  ---
Sorry, KDEPIM 4 is not supported anymore.

The message (akonadi_baloo_indexer(6706)/libakonadi: Unable to register service
\"org.freedesktop.Akonadi.Agent.akonadi_baloo_indexer\" at dbus) indicates that
there's a problem with your DBus session, or that there's already another
(stuck?) instance of akonadi_baloo_indexer running that holds the service.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 379131] Gmail authentication expires after some time

2017-04-24 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=379131

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #1 from Daniel Vrátil  ---
The token should be automatically refreshed when it expires.

I wonder if the problem could be that we share the same API keys with the other
Google resource (calendars and contacts) and they might be "stealing" the
tokens from each other...will look into it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 379153] The server crashes when running akonadictl fsck

2017-04-24 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=379153

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #3 from Daniel Vrátil  ---
Hmnm, that looks like you have a Collection that does not have any mimetypes...

When you run "akonadictl fsck", you should see "Checking Collection X search
index..." just before the crash. Could you check in Akonadi Console whether the
given Collection really does not have any mimetypes?

-- 
You are receiving this mail because:
You are watching all bug changes.

[libkgapi] [Bug 377977] Google calendar synchronization not working for timezones > UTC

2017-04-27 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=377977

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Daniel Vrátil  ---
Hi,

this should be fixed in current release which was in Applications/17.04 (5.5.0)

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 379153] The server crashes when running akonadictl fsck

2017-05-02 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=379153

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
  Latest Commit||https://commits.kde.org/ako
   ||nadi/6934738a92c8b52a545224
   ||74692b98abb9d23736

--- Comment #5 from Daniel Vrátil  ---
Git commit 6934738a92c8b52a54522474692b98abb9d23736 by Daniel Vrátil.
Committed on 02/05/2017 at 09:55.
Pushed by dvratil into branch 'master'.

StorageJanitor: skip search index check of Collections without mimetype

Without mimetype we don't know which search store to look into,
but it also means that the Indexing Agent should not be able to
index it, so there should be no invalid indexed items.

M  +12   -0src/server/storagejanitor.cpp

https://commits.kde.org/akonadi/6934738a92c8b52a54522474692b98abb9d23736

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 379300] Gmail IMAP token/code not saved

2017-05-05 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=379300

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #7 from Daniel Vrátil  ---
This has been fixed in libkgapi already:
https://cgit.kde.org/libkgapi.git/commit/?id=68b89bce22d0da234345ccffb869ae6863592624

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 95733] KMail should always encode as base64 any non text/* and non message/* MIME part

2017-05-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=95733

Daniel Vrátil  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
  Latest Commit||https://commits.kde.org/mes
   ||sagelib/a03f5d84e98801a75ea
   ||6ed3e74f6e6a6f8597c46
 Resolution|--- |FIXED
   Version Fixed In||5.5.1

--- Comment #26 from Daniel Vrátil  ---
Git commit a03f5d84e98801a75ea6ed3e74f6e6a6f8597c46 by Daniel Vrátil.
Committed on 08/05/2017 at 07:20.
Pushed by dvratil into branch 'Applications/17.04'.

Use base64 encoding for all non-text attachments

KMime::encodingForData() uses character occurence frequency to determine
which encoding to use. This does not work for binary attachments because
any characters can appear there. If a wrong encoding is chosen, CRLF/LF
transformations can break the attachment.

Differential Revision: https://phabricator.kde.org/D5737
FIXED-IN: 5.5.1

M  +21   -4messagecore/src/attachment/attachmentpart.cpp

https://commits.kde.org/messagelib/a03f5d84e98801a75ea6ed3e74f6e6a6f8597c46

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 374546] Issue with content encoding

2017-05-09 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=374546

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #4 from Daniel Vrátil  ---
Do you have a specific email that you can reproduce the issue with? Could you
attach it here or share it privately with me?

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 379641] IMAP gmail, OAuth unable to autenticate

2017-05-09 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=379641

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|UNCONFIRMED |NEEDSINFO

--- Comment #1 from Daniel Vrátil  ---
Can you please restart Akonadi from terminal (open Konsole and run "akonadictl
restart") and see if there's any debug output that might help us figure out
what's going on?

-- 
You are receiving this mail because:
You are watching all bug changes.

[kontact] [Bug 362281] Kontact and kmail share New mail shortcut

2017-08-21 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=362281

Daniel Vrátil  changed:

   What|Removed |Added

   Version Fixed In||5.6.1
  Latest Commit||https://commits.kde.org/kma
   ||il/3033e8b58fe41d5911320599
   ||710b05e124e23cf6
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Daniel Vrátil  ---
Git commit 3033e8b58fe41d5911320599710b05e124e23cf6 by Daniel Vrátil.
Committed on 21/08/2017 at 17:37.
Pushed by dvratil into branch 'Applications/17.08'.

Don't set KMKernel::xmlGuiInstanceName() by default

This is a porting regression - KMKernel by default should have an
invalid xmlGuiInstance, which implies that KMail is not running as
a component. When xmlGuiInstance is set, like from KMail::Part, then
we know we are running inside Kontact or similar. Before this change
xmlGuiInstance was always set by the Kernel, so code that was using
this to check if it's running inside Kontact or not did not work.

Together with a porting typo fix, this fixes the ambiguous Ctrl+N
shortcut in KMail inside Kontact.
FIXED-IN: 5.6.1

M  +0-1src/kmkernel.cpp
M  +1-1src/kmmainwidget.cpp

https://commits.kde.org/kmail/3033e8b58fe41d5911320599710b05e124e23cf6

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 384024] [17.08] Akonadi server fails to start with sqlite backend

2017-08-26 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=384024

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
  Latest Commit||https://commits.kde.org/ako
   ||nadi/2fcd7c4c4f6cc512de9d77
   ||78ab67d637934e7638
   Version Fixed In||5.6.1

--- Comment #1 from Daniel Vrátil  ---
Git commit 2fcd7c4c4f6cc512de9d7778ab67d637934e7638 by Daniel Vrátil.
Committed on 26/08/2017 at 10:04.
Pushed by dvratil into branch 'Applications/17.08'.

Fix SQLite DB schema upgrade to version 35

SQLite does not support DROP COLUMN and our upgrade language is not
expressive enough to handle that in another way, so for now we just
leave the 'external' column in PartTable on SQLite, it will simply
be ignored. On other backends the column is removed as expected.
FIXED-IN: 5.6.1

M  +2-1src/server/storage/dbupdate.xml

https://commits.kde.org/akonadi/2fcd7c4c4f6cc512de9d7778ab67d637934e7638

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 379153] The server crashes when running akonadictl fsck

2017-08-26 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=379153

Daniel Vrátil  changed:

   What|Removed |Added

   Version Fixed In||5.6.1
  Latest Commit|https://commits.kde.org/ako |https://commits.kde.org/ako
   |nadi/6934738a92c8b52a545224 |nadi-search/471169247c395c4
   |74692b98abb9d23736  |e866576969585ca42f429c6de
 Resolution|--- |FIXED
 Status|REOPENED|RESOLVED

--- Comment #12 from Daniel Vrátil  ---
Git commit 471169247c395c4e866576969585ca42f429c6de by Daniel Vrátil.
Committed on 26/08/2017 at 10:14.
Pushed by dvratil into branch 'Applications/17.08'.

SearchPlugin: abort search query of unknown types

When searching Collection that has no mimetype or just inode/directory,
we cannot map this to a query type which then asserts lower in search
core code which needs a known query type.
FIXED-IN: 5.6.1

M  +3-0akonadiplugin/searchplugin.cpp

https://commits.kde.org/akonadi-search/471169247c395c4e866576969585ca42f429c6de

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 383951] Assert in imap resource in retrieveitemtask

2017-09-04 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=383951

Daniel Vrátil  changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/kde
   ||pim-runtime/149f88ea2f7bead
   ||aff24d03f59d02cedf0176f98
   Version Fixed In||5.6.2

--- Comment #3 from Daniel Vrátil  ---
Git commit 149f88ea2f7beadaff24d03f59d02cedf0176f98 by Daniel Vrátil.
Committed on 04/09/2017 at 19:25.
Pushed by dvratil into branch 'Applications/17.08'.

IMAP: handle when RetrieveItemTask fails to find the message

Can happen if the Akonadi database contains invalid items or when the
Item is deleted before the task is dispatched.
FIXED-IN: 5.6.2

M  +5-1resources/imap/retrieveitemtask.cpp

https://commits.kde.org/kdepim-runtime/149f88ea2f7beadaff24d03f59d02cedf0176f98

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 366238] KMail does not fetch mails from imap.kabelmail.de

2017-09-04 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=366238

--- Comment #12 from Daniel Vrátil  ---
Please run the following commands from a terminal:

export KIMAP_LOGFILE=/tmp/kimap.log
akonadictl --instance test start

(using the --instance test switch ensures that anything we do will be
completely isolated from your main Akonadi setup).

Then start the Akonadi Console, and select the "test" instance. Use the
"Agents" tab to add a new IMAP resource and configure it to the server that
does not work and try to synchronize it.

Afterwards, you can run "akonadictl --instance test stop" in the terminal.

Now there should have a few /tmp/kimap.log.XXX files - make sure they don't
contain any sensitive information and attach them here, or send them to me
privately. The files contain logs of raw IMAP communication between the IMAP
resource and the IMAP server, hopefully, with that information, I'll be able to
figure out what our implementation does not like about those IMAP servers :)

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 350219] Kmail can't create IMAP top level folders

2017-09-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=350219

Daniel Vrátil  changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/ako
   ||nadi/97a191a5df7b307c70e662
   ||996c4846d3d586ff61
   Version Fixed In||5.6.2
 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #24 from Daniel Vrátil  ---
Git commit 97a191a5df7b307c70e662996c4846d3d586ff61 by Daniel Vrátil.
Committed on 08/09/2017 at 15:09.
Pushed by dvratil into branch 'Applications/17.08'.

LIST: correctly return mimetypes for all Collections

LIST was only returning mimetypes for Collections that were resolved in the
initial filter pass. All Collections that were resolved in the second pass
to complete the tree were missing mimetypes, because their IDs were not
passed to the mimetype query. This in included mainly Collections that
don't match the initial mimetype filter, like top-level Collections.

This caused, among other things, KMail to refuse to create Collections
under the top-level Collection, because the top-level Collections did
not match KMail's mimetype filter (inode/directory).
FIXED-IN: 5.6.2

M  +1-0src/server/handler/list.cpp

https://commits.kde.org/akonadi/97a191a5df7b307c70e662996c4846d3d586ff61

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 339576] Can't create new top level IMAP folder

2017-09-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=339576

Daniel Vrátil  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||dvra...@kde.org
 Resolution|--- |FIXED

--- Comment #16 from Daniel Vrátil  ---
Should be now fixed (see #350219).

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 383095] yahoomail refuse the supplied username and password

2017-09-08 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=383095

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #3 from Daniel Vrátil  ---
Yahoo seems to consider traditional username+password login to be "less secure"
- make sure to "Allow apps that use less secure sign in" in your Yahoo Account
Security settings.

I'll look into supporting the alternative authentication methods...

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373782] akonadi failed to append item

2017-01-03 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373782

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #8 from Daniel Vrátil  ---
Assuming you all use Oracle MySQL, please state the version that you have.

The package will be called something like mysql-server (but depends on a
distro).

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmailtransport] [Bug 373799] Compilation error with cyrus-sasl 2.1.26

2017-01-03 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373799

Daniel Vrátil  changed:

   What|Removed |Added

   Version Fixed In||5.4.1
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://commits.kde.org/kma
   ||iltransport/a8e9f253d291c30
   ||ec4fcbb6f3e6d842a8884d87b

--- Comment #1 from Daniel Vrátil  ---
Git commit a8e9f253d291c30ec4fcbb6f3e6d842a8884d87b by Daniel Vrátil.
Committed on 03/01/2017 at 17:07.
Pushed by dvratil into branch 'Applications/16.12'.

Include sys/types.h before sasl.h to fix build against Cyrus-SASL 2.1.26

A known bug in that specific version of Cyrus-SASL. This has been fixed
in later versions, but there's no harm in including sys/types.h ourselves
to make this version work.
FIXED-IN: 5.4.1

M  +3-0kioslave/src/smtp/command.h

https://commits.kde.org/kmailtransport/a8e9f253d291c30ec4fcbb6f3e6d842a8884d87b

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373782] akonadi failed to append item

2017-01-03 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373782

Daniel Vrátil  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
   Version Fixed In||5.4.1
 Resolution|--- |FIXED
  Latest Commit||https://commits.kde.org/ako
   ||nadi/85c5f22b836805ecd20a7a
   ||c8eaae0a6861bdcd24

--- Comment #13 from Daniel Vrátil  ---
Git commit 85c5f22b836805ecd20a7ac8eaae0a6861bdcd24 by Daniel Vrátil.
Committed on 03/01/2017 at 22:02.
Pushed by dvratil into branch 'Applications/16.12'.

AKAPPEND: ensure we always insert with a valid date

Latest MySQL does not like null datetime for some reason, so make sure
we always have a valid date on INSERT.
FIXED-IN: 5.4.1

M  +5-4src/server/handler/akappend.cpp

https://commits.kde.org/akonadi/85c5f22b836805ecd20a7ac8eaae0a6861bdcd24

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 374514] Crash on akonadictl stop

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=374514

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #1 from Daniel Vrátil  ---
This crash hopefully should be fixed in upcoming 5.4.1 release (KDE
Applications 16.12.1). Lets retest once it's released.


The transaction deadlocks are a known problem. We have some handling for that,
but it does not work 100%.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 374086] random crash after deleting a message

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=374086

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|UNCONFIRMED |NEEDSINFO
 CC||dvra...@kde.org

--- Comment #1 from Daniel Vrátil  ---
Looks like a search update in a search collection not known to KMail.

Can you reproduce? Would be helpful to know which Collection it is (at least
get the collectionId value) that we get an assert for.

If it's not a mail search collection, then we could try to debug why KMail got
a notification for a non-mail collection. If it's a mail search collection,
then we can debug why ETM does not know about it.

In the worst case, we can simply handle the situation gracefully and return
from ETMPrivate::monitoredItemLinked() early instead of asserting.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 374636] akonadi does not start after restore

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=374636

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org

--- Comment #1 from Daniel Vrátil  ---
> log_akonadiserver: stderr: "170106 15:35:40 [Note] /usr/sbin/mysqld (mysqld 
> 10.0.28-MariaDB) starting as process 9072 ...\n"
> log_akonadiserver: exit code: 1

Looks like mysqld dies on start up. Maybe the database is corrupted? Can happen
if you did the backup while MySQL was running and possibly changing and not
fully flushing all the data files.


> docb@T520:~> /usr/sbin/mysqld 
> --defaults-file=/home/docb/.local/share/akonadi/mysql.conf 
> --datadir=/home/docb/.local/share/akonadi/db_data/ 
> --socket=/tmp/akonadi-docb.uL1G8Q/mysql.socket
>   
> 
> 170106 15:41:07 [Note] /usr/sbin/mysqld (mysqld 10.0.28-MariaDB) starting as 
> process 9147 ...

Does the mysqld process return immediately, or does it keep running? If it
returns, then it mean it still crashed.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373444] Notes Agent spins at 100% CPU after upgrade from 4:16.08.2+p16.04+git20161117.2322-0 to 4:16.08.3+p16.04+git20161207.0319-0

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373444

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Daniel Vrátil  ---
Workaround: stop Akonadi and remove
~/.config/akonadi/agent_config_akonadi_notes_agent_X_changes.dat.

The problem is caused by the journal file being corrupted. The latest
stable/master has a fix that prevents getting stuck on corrupted files and also
fixes the bug that caused the corruption in the first place.

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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373443] Mail Dispatcher Agent spins at 100% CPU after upgrade from 4:16.08.2+p16.04+git20161117.2322-0 to 4:16.08.3+p16.04+git20161207.0319-0

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373443

--- Comment #8 from Daniel Vrátil  ---
*** Bug 373444 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373443] Mail Dispatcher Agent spins at 100% CPU after upgrade from 4:16.08.2+p16.04+git20161117.2322-0 to 4:16.08.3+p16.04+git20161207.0319-0

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373443

--- Comment #9 from Daniel Vrátil  ---
*** Bug 373441 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373441] Archive Mail Agent spins at 100% CPU after upgrade from 4:16.08.2+p16.04+git20161117.2322-0 to 4:16.08.3+p16.04+git20161207.0319-0

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373441

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||dvra...@kde.org

--- Comment #3 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373443] Mail Dispatcher Agent spins at 100% CPU after upgrade from 4:16.08.2+p16.04+git20161117.2322-0 to 4:16.08.3+p16.04+git20161207.0319-0

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373443

--- Comment #10 from Daniel Vrátil  ---
*** Bug 373442 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373442] Migration Agent spins at 100% CPU after upgrade from 4:16.08.2+p16.04+git20161117.2322-0 to 4:16.08.3+p16.04+git20161207.0319-0

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373442

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 372824] PIM Events Plugin crashes plasmashell

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=372824

Daniel Vrátil  changed:

   What|Removed |Added

 CC||bj.kdede...@bkaj.org

--- Comment #2 from Daniel Vrátil  ---
*** Bug 373111 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373111] Crash During Start Up After Login

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373111

Daniel Vrátil  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||dvra...@kde.org

--- Comment #9 from Daniel Vrátil  ---
This has been fixed in KDE Applications 16.12 release.

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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 368161] Plasma (plasmashell), signal: Segmentation fault

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=368161

Daniel Vrátil  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||dvra...@kde.org

--- Comment #4 from Daniel Vrátil  ---
This should be fixed since kdepim-addons-5.3.3 (KDE Applications 16.08.3).

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

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 368832] New Pim Events Plugin renders inacurate output for CalDAV calendar

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=368832

Daniel Vrátil  changed:

   What|Removed |Added

 CC||bugrprt21...@online.de

--- Comment #10 from Daniel Vrátil  ---
*** Bug 368161 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373989] Kmail 5.4 / akonadi agents hogging cpu cores

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373989

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373443] Mail Dispatcher Agent spins at 100% CPU after upgrade from 4:16.08.2+p16.04+git20161117.2322-0 to 4:16.08.3+p16.04+git20161207.0319-0

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373443

Daniel Vrátil  changed:

   What|Removed |Added

 CC||peter.fink...@inode.at

--- Comment #11 from Daniel Vrátil  ---
*** Bug 373989 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 368832] New Pim Events Plugin renders inacurate output for CalDAV calendar

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=368832

Daniel Vrátil  changed:

   What|Removed |Added

 CC||pradhan...@gmail.com

--- Comment #11 from Daniel Vrátil  ---
*** Bug 372914 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 368832] New Pim Events Plugin renders inacurate output for CalDAV calendar

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=368832

Daniel Vrátil  changed:

   What|Removed |Added

 CC||aya...@gmail.com

--- Comment #12 from Daniel Vrátil  ---
*** Bug 373143 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 373143] KDE Crashed when I configuring Digital Clock

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=373143

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

[Akonadi] [Bug 372914] Digital clock setting crash

2017-01-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=372914

Daniel Vrátil  changed:

   What|Removed |Added

 CC||dvra...@kde.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Daniel Vrátil  ---


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

-- 
You are receiving this mail because:
You are watching all bug changes.

<    1   2   3   4   5   6   7   8   >