[kontact] [Bug 474823] Bogus event entry on GWR confirmation email

2023-09-25 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=474823

--- Comment #3 from Volker Krause  ---
Any chance you could send me the email causing this (forwarded as attachment,
to vkra...@kde.org)? Thank you!

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

[korganizer] [Bug 347045] Sunday is always automatically selected once weekly recurrence drop down is clicked

2023-07-09 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=347045

Volker Krause  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/pim/
   ||libkdepim/-/commit/bda4e47a
   ||7872769abbdfb82464585d379be
   ||34fb0

--- Comment #10 from Volker Krause  ---
Git commit bda4e47a7872769abbdfb82464585d379be34fb0 by Volker Krause, on behalf
of Thomas Karpiniec.
Committed on 09/07/2023 at 07:20.
Pushed by vkrause into branch 'master'.

Avoid spurious checkcombobox toggle where indexes don't match

When clicking on a KCheckComboBox that has an item already selected,
QComboBox will fire activated (via _q_editingFinished). When this
popup is opening for the first time the currentIndex of the combo
box is correct but the view's current index is still row 0. This
leads to spuriously toggling the first item in the list.

Since this activation from QComboBox happens programatically, care
must also be taken not to process this event for a disabled item.

M  +3-2src/widgets/kcheckcombobox.cpp

https://invent.kde.org/pim/libkdepim/-/commit/bda4e47a7872769abbdfb82464585d379be34fb0

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

[korganizer] [Bug 458254] Cannot hide completed todo

2023-06-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=458254

Volker Krause  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/pim/ |https://invent.kde.org/pim/
   |eventviews/-/commit/db4009f |eventviews/-/commit/83076ae
   |65c84be6a364a9f7b405c64520c |14a07ffa3f689e9e603a9d078ff
   |f57f58  |c41598

--- Comment #5 from Volker Krause  ---
Git commit 83076ae14a07ffa3f689e9e603a9d078ffc41598 by Volker Krause, on behalf
of Thomas Karpiniec.
Committed on 11/06/2023 at 11:39.
Pushed by vkrause into branch 'release/23.04'.

Invalidate model to apply sortCompletedTodosSeparately pref


(cherry picked from commit db4009f65c84be6a364a9f7b405c64520cf57f58)

M  +4-0src/todo/todoview.cpp

https://invent.kde.org/pim/eventviews/-/commit/83076ae14a07ffa3f689e9e603a9d078ffc41598

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

[kmail2] [Bug 466300] kmail crashed on switching to Spam folder (.eml file example attached)

2023-02-23 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=466300

--- Comment #3 from Volker Krause  ---
Doesn't crash here with the attached email. The backtrace suggests this uses
ZXing 2.0, which Neon seemed to have rolled out very recently, in particular
after the last update to the PIM packages. So this looks suspiciously like the
ZXing ABI break issues we saw earlier with other distros already. If that's the
case the upcoming 5.22.3 update should fix that automatically.

As a workaround until then, delete or move away
/usr/lib64/plugins/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so
(path might differ slightly depending on distro/platform). That will disable
the itinerary plugin but not impede KMail's functionality otherwise.

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

[kontact] [Bug 463921] add geolocation field to address record

2023-01-06 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=463921

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #2 from Volker Krause  ---
(In reply to Laurent Montel from comment #1)
> As gps coordinate ?

KContacts::Address even has that already, it's "just" missing in the UI.
Exposing that as simple numerical values however is pretty useless for most
users I think, what we'd ideally want there instead is a map. See e.g. what
Kalendar does for event locations.

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

[Reminder Daemon] [Bug 452264] Appointment reminder handling reduces usability and functionality between 21.12.3 and 22.03.80

2022-05-21 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=452264

--- Comment #24 from Volker Krause  ---
Git commit be3c95e8a7704507e2448da99cbdda0c76707729 by Volker Krause.
Committed on 20/05/2022 at 15:26.
Pushed by vkrause into branch 'master'.

Add translation context for the "Dismiss" action

Should help with fixing the misleading German translation of this.

M  +1-1reminder-daemon/alarmnotification.cpp

https://invent.kde.org/pim/akonadi-calendar/commit/be3c95e8a7704507e2448da99cbdda0c76707729

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

[korganizer] [Bug 452264] Appointment reminder handling reduces usability and functionality between 21.12.3 and 22.03.80

2022-05-05 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=452264

--- Comment #16 from Volker Krause  ---
Some more technical background:

The notification popup UI is entirely outside of our control, it's provided by
the platform shell (Plasma, Gnome, Android, Windows, etc). What we can use are
two text elements (title and body) with some basic rich text formatting, the
default "activate" and "close"/"discard" actions and up to 3 named action
buttons. Additionally, there are a few special-purpose controls for indicating
progress, for things related to files/URLs (that's the mentioned hamburger
menu), inline replies to text messages or media playback controls, neither of
which is really applicable to event reminders.

So essentially the thing we can work with are the three action buttons. They
however also close the notification when activated on most platforms, so
clicking 3x 5min for a 15min suspension is also not possible for example.

Right now we use those buttons for "Dismiss" (which duplicates the
default/built-in dismiss action and thus isn't strictly needed, it's just
easier to hit than the small 'X' button, considering how often it's needed),
"Suspend" and a context-specific action when available ("Open URL", "Show
Map"). As mentioned before, that allocation doesn't need to be fixed, we can
adjust that depending on the context.

What we can do in theory is launch a separate UI from there, with whatever UI
we want. Not doing this has the advantage that we don't have to bother with
desktop vs mobile usability, notifications popups are appropriately adjusted
for us for free in that regard. The other thing to consider is to not make
things too convoluted for users for whom the current setup works very
efficiently.


That aside, the important part here IMHO is to properly understand what people
actually use this for, and derive from that how we can best support that. My
impression from the feedback here and elsewhere is that this is basically split
into two groups:

(1) reminders for things like meetings or calls, typically set shortly before
the event. That's the use-case the current implementation seems to support
rather well. The need for fine-grained suspension times is further reduced
there by the popup being able to remain open without interfering with continued
use of other applications while showing a countdown to the event.

(2) reminders being used as part of some form of task management workflow (on
either events or todos). That's where the reminder distance to the event is
typically bigger, or might not really matter at all as there is no hard
deadline (ie. reminders might be deferred past the event). That's where the
current approach isn't helping.

Is there a way we can distinguish those use-cases reliably? Then we could at
least give the second case three different suspend options quite easily.

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

[korganizer] [Bug 452264] Appointment reminder handling reduces usability and functionality between 21.12.3 and 22.03.80

2022-05-03 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=452264

--- Comment #13 from Volker Krause  ---
We cannot have the same level of detail for the suspend time UI as the old
dialog had, system notifications are much more restricted in that regard.
However, there is certainly room to improve the current system.

The 5 minute interval makes sense for events at a fixed time in say the next
hour or so (eg. meetings or calls) I think. For events in the more distant
future, all day events, todos (or events used to represent tasks) we can
probably find better defaults. Something proportional to the distance to the
event would seem like it would address at least some of the problems?

We also have the option to re-purpose the third action button for an additional
choice. That is currently used to open online meeting links or the map of the
event location, which are actions that are most relevant close to the event,
while days earlier a second suspend interval choice might be more useful
instead?

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

[korganizer] [Bug 452264] Appointment reminder handling reduces usability and functionality between 21.12.3 and 22.03.80

2022-04-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=452264

--- Comment #7 from Volker Krause  ---
Click on the notification icon in the panel, that gives you a view which shows
all active notifications grouped by application/source, on the right next to
the application entry is a 'X' button that dismisses all notifications of that
group.

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

[korganizer] [Bug 452264] Appointment reminder handling reduces usability and functionality between 21.12.3 and 22.03.80

2022-04-07 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=452264

--- Comment #5 from Volker Krause  ---
Oh, I see, yes, the body text can be improved in a number of cases,
https://invent.kde.org/pim/akonadi-calendar/-/merge_requests/17 should help
with that.

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

[korganizer] [Bug 452264] Appointment reminder handling reduces usability and functionality between 21.12.3 and 22.03.80

2022-04-06 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=452264

--- Comment #3 from Volker Krause  ---
Created attachment 148002
  --> https://bugs.kde.org/attachment.cgi?id=148002=edit
single reminder notification popup

 I've attached a screenshot of how this looks here for a single reminder
notification.

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

[korganizer] [Bug 452264] Appointment reminder handling reduces usability and functionality between 21.12.3 and 22.03.80

2022-04-05 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=452264

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #1 from Volker Krause  ---
In which desktop shell are you running this? In Plasma here the notification
body contains the event start time, the icon in the notification is
interactive, and the notification panel allows group dismissal.

https://invent.kde.org/pim/akonadi-calendar/-/merge_requests/15 has a proposal
for making past reminders easier to distinguish.

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

[frameworks-kcontacts] [Bug 446665] Cannot set Addressee birthday from QML (e.g., from plasma-phonebook)

2022-01-10 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=446665

--- Comment #3 from Volker Krause  ---
Making the birthday property writable in some form, using the approach you
outlined or e.g. by marking the existing setter Q_INVOKABLE, seems like a good
idea to me. But of course I can't make any promises about this being accepted,
I'm not the maintainer of KContacts.

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

[kmail2] [Bug 423424] Kmail "forces" the user to accept invalid TLS certificates.

2021-11-16 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=423424

--- Comment #11 from Volker Krause  ---
Git commit cbd3a03bc1d2cec48bb97570633940bbf94c34fa by Volker Krause.
Committed on 15/11/2021 at 17:18.
Pushed by knauss into branch 'release/21.12'.

Treat SSL handshake errors as fatal also when using STARTTLS

This fixes the infinite SSL error dialog loop also when using
STARTTLS, the previous fix was only effective for direct TLS
connections.

M  +9-13   src/loginjob.cpp

https://invent.kde.org/pim/kimap/commit/cbd3a03bc1d2cec48bb97570633940bbf94c34fa

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

[kmail2] [Bug 423424] Kmail "forces" the user to accept invalid TLS certificates.

2021-09-29 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=423424

Volker Krause  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/pim/
   ||ksmtp/commit/fca378d55e2239
   ||44ce512c9a8f8b789d1d3abcde
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #8 from Volker Krause  ---
Git commit fca378d55e223944ce512c9a8f8b789d1d3abcde by Volker Krause.
Committed on 29/09/2021 at 15:41.
Pushed by knauss into branch 'release/21.08'.

Emit an error rather than reconnect when SSL errors are not ignored

Not ignoring SSL certificate errors now results in a delivery error rather
than a loop on the SSL error dialog.

M  +5-4src/sessionthread.cpp

https://invent.kde.org/pim/ksmtp/commit/fca378d55e223944ce512c9a8f8b789d1d3abcde

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

[kmail2] [Bug 423424] Kmail "forces" the user to accept invalid TLS certificates.

2021-09-28 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=423424

--- Comment #6 from Volker Krause  ---
Git commit edb7f6fdea2c9f44085a042531f56223f3fd8a2f by Volker Krause.
Committed on 28/09/2021 at 16:05.
Pushed by knauss into branch 'release/21.08'.

Consider the online state when attempting to reconnect

There's actually a comprehensive error condition handling in the method
above which properly distinguishing between transient and persistent
problems, but we just ignore that decision here and continuously
reconnect.

Together with https://invent.kde.org/pim/kimap/-/merge_requests/9 this
fixes the infinite SSL error dialog loop when rejecting to ignore an SSL
error to a large extend. You still get the dialog twice now, and then
after a few minutes again as this is considered to be a transient error
(e.g. caused by capture portals). This at least gives you the opportunity
now to actually fix the configuration or remove the resource.

(Bug 423424 remains open for SMTP)

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

https://invent.kde.org/pim/kdepim-runtime/commit/edb7f6fdea2c9f44085a042531f56223f3fd8a2f

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

[kmail2] [Bug 423424] Kmail "forces" the user to accept invalid TLS certificates.

2021-09-28 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=423424

--- Comment #5 from Volker Krause  ---
Git commit 7ee241898bc225237b3475f6c109ffc55a4a74c0 by Volker Krause.
Committed on 28/09/2021 at 15:58.
Pushed by knauss into branch 'release/21.08'.

Disconnect rather than reconnect when not ignoring SSL errors

Reconnecting makes no sense, we'll just end up with the SSL error dialog
again and again in that case.

Not enough to fix 423424 by itself, but a necessary prerequisite.

M  +1-4src/sessionthread.cpp

https://invent.kde.org/pim/kimap/commit/7ee241898bc225237b3475f6c109ffc55a4a74c0

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

[kmail2] [Bug 423423] STARTTLS is ignored when "Server requires authentication" not checked in UI

2021-09-23 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=423423

Volker Krause  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/pim/
   ||ksmtp/commit/60f73c69758fe4
   ||0a027a8e7402127d085f18545a
 Status|ASSIGNED|RESOLVED

--- Comment #7 from Volker Krause  ---
Git commit 60f73c69758fe40a027a8e7402127d085f18545a by Volker Krause.
Committed on 23/09/2021 at 16:02.
Pushed by knauss into branch 'master'.

Move STARTTLS setup from LoginJob to Session

This is now done immediately after opening the connection, independent
of whether there is a LoginJob at all.

M  +5-28   src/loginjob.cpp
M  +15   -2src/session.cpp
M  +1-0src/session_p.h

https://invent.kde.org/pim/ksmtp/commit/60f73c69758fe40a027a8e7402127d085f18545a

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

[kmail2] [Bug 423423] STARTTLS is ignored when "Server requires authentication" not checked in UI

2021-09-21 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=423423

--- Comment #5 from Volker Krause  ---
Git commit 38a4c09427f3fdc04f9893f8eda3f6807d9a3203 by Volker Krause.
Committed on 21/09/2021 at 16:18.
Pushed by knauss into branch 'master'.

Move establishing the TLS connection to Session

This means we now also enable TLS when not having a LoginJob, ie. on
servers not requiring authentication.

Doing the same for STARTTLS is the next step then.

M  +0-2src/loginjob.cpp
M  +1-11   src/session.cpp
M  +11   -2src/sessionthread.cpp
M  +2-0src/sessionthread_p.h

https://invent.kde.org/pim/ksmtp/commit/38a4c09427f3fdc04f9893f8eda3f6807d9a3203

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

[korganizer] [Bug 434121] Allow non-interrupting reminders

2021-09-12 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=434121

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #7 from Volker Krause  ---
(In reply to Tusooa Zhu from comment #3)
> Can confirm. I will work on a fix.

Great :) Glen pointed out the current plans/discussions regarding reminders
already, another relevant thing to look at is
https://invent.kde.org/plasma-mobile/calindori/-/tree/master/calindac, which
might contain some reusable code for the notifications already.

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

[kontact] [Bug 428358] Kmail crashes when selecting one specific email

2020-10-29 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=428358

--- Comment #5 from Volker Krause  ---
Git commit 8a69e75b69c0978c6a50f131a619bc0ce3fc431e by Volker Krause.
Committed on 29/10/2020 at 20:41.
Pushed by vkrause into branch 'master'.

Add workarounds for known JSON syntax errors in pass.json

It seems we even have to expect invalid JSON in here, despite the signing
and validation tools that are presumably used to produce those...

M  +14   -3src/pass.cpp

https://invent.kde.org/pim/kpkpass/commit/8a69e75b69c0978c6a50f131a619bc0ce3fc431e

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

[kontact] [Bug 428358] Kmail crashes when selecting one specific email

2020-10-29 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=428358

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #4 from Volker Krause  ---
As a workaround until you get the fix in 20.08.3 you can meanwhile just delete
the file
/plugins/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so
(exact location depends on the distribution) to access view the affected email
again.

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

[kontact] [Bug 428358] Kmail crashes when selecting one specific email

2020-10-29 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=428358

Volker Krause  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/pim/
   ||kdepim-addons/commit/c40638
   ||b7e5f7a16733aa9f7d6d2daf257
   ||63c9619
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #3 from Volker Krause  ---
Git commit c40638b7e5f7a16733aa9f7d6d2daf25763c9619 by Volker Krause.
Committed on 29/10/2020 at 07:46.
Pushed by vkrause into branch 'release/20.08'.

Fix nullptr access on pkpass parsing failures

M  +3-0plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp

https://invent.kde.org/pim/kdepim-addons/commit/c40638b7e5f7a16733aa9f7d6d2daf25763c9619

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

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

2020-08-23 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=378436

Volker Krause  changed:

   What|Removed |Added

 Blocks|416403  |


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=416403
[Bug 416403] During account wizard using @protonmail.com, get "Kmail could not
convert value of setting 'Authentication' to required type"
-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 416403] During account wizard using @protonmail.com, get "Kmail could not convert value of setting 'Authentication' to required type"

2020-08-23 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=416403

Volker Krause  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #26 from Volker Krause  ---
This has been fixed in 20.04.0 by
https://commits.kde.org/kmail-account-wizard/4b65460dc48b0ebe6ec3bd3f9615d462793bdba6

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

[kmail2] [Bug 416403] During account wizard using @protonmail.com, get "Kmail could not convert value of setting 'Authentication' to required type"

2020-08-23 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=416403

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org
 Depends on|378436  |


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=378436
[Bug 378436] Instance create job emits result too early
-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmail2] [Bug 422325] Newer KMail crashes with HTML Mail from DHL

2020-06-06 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=422325

--- Comment #8 from Volker Krause  ---
Git commit 1021bb61cd28b0b18594cfc1995a3ad10e9174ea by Volker Krause.
Committed on 06/06/2020 at 08:48.
Pushed by vkrause into branch 'master'.

Add support for displaying generic Apple Wallet passes

Found for example in some emails from DHL.

M  +1-1CMakeLists.txt
M  +9-0plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp
M  +1-0plugins/messageviewer/bodypartformatter/pkpass/templates.qrc
A  +96   -0   
plugins/messageviewer/bodypartformatter/pkpass/templates/generic.html

https://invent.kde.org/pim/kdepim-addons/commit/1021bb61cd28b0b18594cfc1995a3ad10e9174ea

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

[kmail2] [Bug 422325] Newer KMail crashes with HTML Mail from DHL

2020-06-06 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=422325

Volker Krause  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED
  Latest Commit||https://invent.kde.org/pim/
   ||kdepim-addons/commit/51be4d
   ||2a71be17f66a6535f8a41450545
   ||7117939

--- Comment #7 from Volker Krause  ---
Git commit 51be4d2a71be17f66a6535f8a414505457117939 by Volker Krause.
Committed on 06/06/2020 at 08:03.
Pushed by vkrause into branch 'release/20.04'.

Fix crash when encountering pkpass types we cannot render

M  +3-0plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp

https://invent.kde.org/pim/kdepim-addons/commit/51be4d2a71be17f66a6535f8a414505457117939

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

[kmail2] [Bug 422325] Newer KMail crashes with HTML Mail from DHL

2020-06-05 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=422325

--- Comment #6 from Volker Krause  ---
The backtrace doesn't have line numbers, so having the email causing this (or
at least its pkpass attachment) would help a lot for reproducing this. Doesn't
need to be shared publicly, you can sent it to me directly (vkra...@kde.org).
Thanks!

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

[kmail2] [Bug 409001] when opened message (incapsulated by outlook) kmail crashes

2020-04-07 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=409001

--- Comment #17 from Volker Krause  ---
wow, nice find, that's a nasty one

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

[Akonadi] [Bug 416813] Crash on startup

2020-04-05 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=416813

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #1 from Volker Krause  ---
Fixed in messagelib 20.04 branch.

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

[Akonadi] [Bug 414178] Deleting all contacts deletes entire /home/user/

2019-11-17 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=414178

--- Comment #1 from Volker Krause  ---
Git commit e3e0ee0ddc82bf6a34ebe93ed6c5c881f412ddc2 by Volker Krause.
Committed on 17/11/2019 at 11:12.
Pushed by vkrause into branch 'release/19.12'.

Sanity-check collection path before performing recursive deletion

Summary:
There is a error paths in directoryForCollection() which might give us
an empty string here, which is then interpreted as the current working
directory.

Reviewers: mlaurent

Reviewed By: mlaurent

Subscribers: kde-pim

Tags: #kde_pim

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

M  +6-2resources/contacts/contactsresource.cpp

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

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

[kmail2] [Bug 411999] kmail crashes on a base64 encoded PDF file

2019-10-15 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=411999

--- Comment #4 from Volker Krause  ---
A local workaround for this is to delete
/usr/lib64/plugins/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so
(exact location can vary slightly depending on the distro).

This entire class of errors has been mitigated in 19.12 by moving PDF parsing
out of the KMail process.

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

[kmail2] [Bug 412251] Kmail crashes when deleting mail

2019-10-15 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=412251

--- Comment #1 from Volker Krause  ---
A local workaround for this is to delete
/usr/lib64/plugins/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so
(exact location can vary slightly depending on the distro).

Debugging the actual problem would require access on the offending email. This
entire class of errors has been mitigated in 19.12 by moving PDF parsing out of
the KMail process.

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

[kmail2] [Bug 411515] Crash in kitinary on EasyJet confirmations

2019-09-02 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=411515

--- Comment #1 from Volker Krause  ---
This looks like commit
https://github.com/steveire/grantlee/commit/ef6c98acbe34ff8c12621075236b86525fdbbce4
from Grantlee is missing, is that possible?

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

[kmail2] [Bug 409001] when opened message (incapsulated by outlook) kmail crashes

2019-08-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=409001

Volker Krause  changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/kde
   ||pim-addons/07524e4302f1b25d
   ||70a371f42265a2a45c4f39e4
 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #12 from Volker Krause  ---
Git commit 07524e4302f1b25d70a371f42265a2a45c4f39e4 by Volker Krause.
Committed on 11/08/2019 at 08:39.
Pushed by vkrause into branch 'master'.

Use external itinerary extraction process

This avoids parsing PDF files in the KMail process, isolating us entirely
from crashes or hangs due to corrupt files or bugs in our PDF parser.

M  +4-18  
plugins/messageviewer/bodypartformatter/semantic/semanticprocessor.cpp

https://commits.kde.org/kdepim-addons/07524e4302f1b25d70a371f42265a2a45c4f39e4

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

[kmail2] [Bug 409001] when opened message (incapsulated by outlook) kmail crashes

2019-08-01 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=409001

--- Comment #10 from Volker Krause  ---
Is that with KMail 5.10/18.12 for you as well? I so far cannot reproduce this
with more recent versions, but if you have a document that crashes 5.11/19.04
or 5.12/19.08 I'm of course very much interested.

Independent of that, I'm looking at moving the PDF parsing out of process to
avoid this problem more fundamentally. Until then, see Comment #3 for a local
workaround.

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

[kmail2] [Bug 409001] when opened message (incapsulated by outlook) kmail crashes

2019-06-24 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=409001

--- Comment #6 from Volker Krause  ---
Okular being able to display the document is indeed an important observation,
could be a bug in the extractor plugin after all, or a different way of using
Popppler.

Providing the affected document in private is perfectly fine of course, you can
send it to vkra...@kde.org (GPG key 0x7F96CCD64D12D247 if you want to encrypt
it) and I'll delete as soon as the problem has been debugged.

Thanks!

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

[kmail2] [Bug 409001] when opened message (incapsulated by outlook) kmail crashes

2019-06-23 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=409001

--- Comment #3 from Volker Krause  ---
This is Poppler crashing on the attached PDF I think.

A local workaround is to delete
/usr/lib64/plugins/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so
(exact location can vary slightly depending on the distro).

For addressing the actual issue (assuming it still exists in newer Poppler
versions) we'd need the PDF causing this.

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

[kontact] [Bug 405440] Kontact crash when click on configure kontact

2019-03-18 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=405440

Volker Krause  changed:

   What|Removed |Added

 CC||k...@davidedmundson.co.uk

--- Comment #5 from Volker Krause  ---
Seems to be kcmutils commit ab33762a6a60101f6ddc5797e1620569f5a07a2a ("Sync QML
module padding to reflect system setting pages"). David?

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

[kontact] [Bug 405440] Kontact crash when click on configure kontact

2019-03-18 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=405440

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #4 from Volker Krause  ---
Regression in kcmutils 5.56.0 it seems, with 5.55.0 the config dialog works as
expected.

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

[Akonadi] [Bug 399167] Akonadi enters deadlock state which makes it completely unuseable

2019-02-07 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=399167

Volker Krause  changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #10 from Volker Krause  ---
Hit this too. Unclear what caused it, but the workaround from #338658 seems to
fix the damage:
DELETE pimitemtable FROM pimitemtable
LEFT JOIN parttable ON pimitemtable.id = parttable.pimItemId
WHERE parttable.id IS NULL

That would suggest that a part-less item can fairly reliably trigger the
transaction deadlock.

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

[kontact] [Bug 401962] Kontact crash on certain emails

2019-01-09 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=401962

Volker Krause  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from Volker Krause  ---
Thanks for the detailed report!

I can confirm the problem with 18.08 (Kontact 5.9), the problem is a nullptr
dereference of the "ref" argument in the following stack trace line:
#6  KItinerary::ExtractorOutputDevice::drawImage (this=0x56214836c610,
state=0x562141dd7490, ref=0x0, str=0x56214852a6c0, width=134, height=23,
colorMap=0x7ffe93a2f3c0, interpolate=false, maskColors=0x0, inlineImg=true) at
./src/pdfdocument.cpp:175

This has been fixed in 18.12 and master already, I can't  reproduce the issue
there anymore.

Until you get a chance to upgrade to Kontact 5.10 a possible workaround is to
remove
plugins/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so
while Kontact is not running (exact location differs depending on the distro,
usually somewhere below /usr/lib*), unless you absolutely rely on KDE Itinerary
integration.

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

[kmail2] [Bug 394554] Regression: kMail 5.8.1 Information Leak: kMail loads external references in HTML mails without asking

2018-05-26 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=394554

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/mes
   ||sagelib/9669e2622ee26ac748d
   ||64b567562889ad5f190ef
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #19 from Volker Krause <vkra...@kde.org> ---
Git commit 9669e2622ee26ac748d64b567562889ad5f190ef by Volker Krause.
Committed on 26/05/2018 at 08:38.
Pushed by vkrause into branch 'Applications/18.04'.

Ensure we always reset the external reference override

Summary:
So far there were apparently cases where this got stuck on enabled even
when switching between emails.

Reviewers: cgiboudeaux, knauss, mlaurent

Reviewed By: knauss

Subscribers: kde-pim

Tags: #kde_pim

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

M  +1-0messageviewer/src/viewer/viewer_p.cpp

https://commits.kde.org/messagelib/9669e2622ee26ac748d64b567562889ad5f190ef

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

[kmail2] [Bug 394554] Regression: kMail 5.8.1 Information Leak: kMail loads external references in HTML mails without asking

2018-05-24 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=394554

--- Comment #17 from Volker Krause <vkra...@kde.org> ---
Possible fix: https://phabricator.kde.org/D13096

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

[kmail2] [Bug 394554] Regression: kMail 5.8.1 Information Leak: kMail loads external references in HTML mails without asking

2018-05-24 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=394554

--- Comment #11 from Volker Krause <vkra...@kde.org> ---
One thing I noticed during testing this is that once you loaded external
references for an email, the next display of HTML content without confirming
loading external references can be served from the web engine cache, and
neither show the external content warning nor perform any network access.
Restarting KMail seemed to reset that here though.

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

[kmail2] [Bug 394554] Regression: kMail 5.8.1 Information Leak: kMail loads external references in HTML mails without asking

2018-05-22 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=394554

--- Comment #7 from Volker Krause <vkra...@kde.org> ---
It's in the main menu: Folder > Load External References

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

[kmail2] [Bug 394554] Regression: kMail 5.8.1 Information Leak: kMail loads external references in HTML mails without asking

2018-05-22 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=394554

--- Comment #5 from Volker Krause <vkra...@kde.org> ---
That would be a very serious security issue obviously, but I can't reproduce
this here either.

Besides the global setting, there is a per-folder setting for this (Folder ->
Load External References). Is that also switched off?

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

[kmail2] [Bug 390069] composer window freezes - probably waiting for gpg-agent/pinentry reply?

2018-02-08 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=390069

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 CC||vkra...@kde.org

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

[kmail2] [Bug 385526] recent changes broke multipart display

2017-10-13 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=385526

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Latest Commit||https://commits.kde.org/kde
   ||pim-addons/a6350d00764f7016
   ||924a796455fa8c68d044aecb
 Resolution|--- |FIXED

--- Comment #1 from Volker Krause <vkra...@kde.org> ---
Git commit a6350d00764f7016924a796455fa8c68d044aecb by Volker Krause.
Committed on 13/10/2017 at 18:34.
Pushed by vkrause into branch 'master'.

Only generate a message part for the type we can handle

This is combination of the changes in 8f4bb67988 and 33bbdbb33. This is
needed as we can end up here for sub-types of multipart/mixed, which we
don't want to handle at all.

M  +3-1   
plugins/messageviewer/bodypartformatter/gnupgwks/gnupgwksformatter.cpp

https://commits.kde.org/kdepim-addons/a6350d00764f7016924a796455fa8c68d044aecb

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

[kcalutils] [Bug 383890] kcalutils-testincidenceformatter test fails in 17.04/17.08

2017-10-04 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=383890

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
  Latest Commit||https://commits.kde.org/kca
   ||lutils/b76972cfab5b9630110e
   ||8e3d3b86f730bbd6c3ee
 Resolution|--- |FIXED

--- Comment #4 from Volker Krause <vkra...@kde.org> ---
Git commit b76972cfab5b9630110e8e3d3b86f730bbd6c3ee by Volker Krause.
Committed on 04/10/2017 at 16:43.
Pushed by vkrause into branch 'Applications/17.08'.

Fix a whole bunch of IncidenceFormatter unit tests

Still not perfect, but at least we can see actual breakage again.

(cherry picked from commit f839f4fdaa096adb3011b3deac810a03e91560d0)

M  +0-2autotests/data/todo-1.html
M  +1-1src/templates/attendee_row.html
M  +2-10   src/templates/itip.html
M  +2-2src/templates/journal.html

https://commits.kde.org/kcalutils/b76972cfab5b9630110e8e3d3b86f730bbd6c3ee

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

[kcalutils] [Bug 383890] kcalutils-testincidenceformatter test fails in 17.04/17.08

2017-09-14 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=383890

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
Right, it's green in master. Probably needs a backport of
f839f4fdaa096adb3011b3deac810a03e91560d0.

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

[kmail2] [Bug 367598] Kmail needs to force platform xcb on Linux

2017-07-25 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=367598

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
Since Qt 5.9 web engine works fine with Wayland, and thus so does KMail now,
just tested in the Wayland BoF at Akademy :)

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

[Akonadi] [Bug 297356] Akonadi calendar crashes often (traditional calendar over webdavs)

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=297356

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #3 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 312873] Akonadi crash when adding new Calendar

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=312873

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #7 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 187633] Akonadi migration error window disappears

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=187633

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #3 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 296407] akonadi_kcal_resource falha ao inicializar o kontact

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=296407

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 260597] akonadi ressource crashes if i open contacts in kontact

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=260597

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #3 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 298254] KAddressbook crashes on reconfiguring IMAP account with new credentials

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=298254

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 229259] Akonadi Resource crashed after switch to summary view in kontact

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=229259

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #7 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 249467] akonadi_kabc continuously crashes

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=249467

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Resolution|BACKTRACE   |UNMAINTAINED
 Status|NEEDSINFO   |RESOLVED

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 203915] Crash after clicking on "Show Info" on a akonadi-resource in Calendar-Kontact (akonadi, ResourceView::showInfo)

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=203915

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Resolution|BACKTRACE   |UNMAINTAINED
 Status|NEEDSINFO   |RESOLVED

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 240755] systemsettings crashes when opening kresources

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=240755

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Resolution|BACKTRACE   |UNMAINTAINED
 Status|NEEDSINFO   |RESOLVED

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 233809] Akonadi crashed when trying to add LDAP addressbook

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=233809

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Resolution|BACKTRACE   |UNMAINTAINED
 Status|NEEDSINFO   |RESOLVED

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 294486] Korganiser crashes on start

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=294486

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #8 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 281682] KOrganizer 4.7 - Unable to import calendar

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=281682

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #8 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 323692] KDE Calendar crashes when starting

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=323692

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Resolution|BACKTRACE   |UNMAINTAINED
 Status|NEEDSINFO   |RESOLVED

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 282234] Akonadi crash, if edit an calendar

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=282234

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #1 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 258789] akonadi_kcal_resource crash when adding a remote ical file

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=258789

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 284118] akonadi_kabc_resource crashes on startup

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=284118

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #1 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 250078] crash while using groupdav

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=250078

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #3 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 248838] Preferencias del sistema se cierra al cerrar KaddressBook

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=248838

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 228719] Contacts in contact groups getting lost

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=228719

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Resolution|--- |UNMAINTAINED
 Status|CONFIRMED   |RESOLVED

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 229577] akonadi totally locks up with "remote" datasources set up

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=229577

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #1 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[Akonadi] [Bug 236228] too much cpu usage

2015-10-24 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=236228

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #5 from Volker Krause <vkra...@kde.org> ---
The KResource compatibility bridges don't exist anymore with KDE PIM 15.08.

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


[kdepim] [Bug 346175] KDE PIM 15.08 release tracking bug

2015-10-17 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=346175
Bug 346175 depends on bug 351752, which changed state.

Bug 351752 Summary: Licensing issues in kdepimlibs 15.08.0
https://bugs.kde.org/show_bug.cgi?id=351752

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

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


[kdepimlibs] [Bug 351752] Licensing issues in kdepimlibs 15.08.0

2015-10-17 Thread Volker Krause via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=351752

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/kdep
   ||imlibs/a7831bbdfdf9896eb951
   ||8bca1abb94185d81bdac
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from Volker Krause <vkra...@kde.org> ---
Git commit a7831bbdfdf9896eb9518bca1abb94185d81bdac by Volker Krause.
Committed on 17/10/2015 at 10:25.
Pushed by vkrause into branch 'Applications/15.08'.

Fix license, this needs to be LGPL.

Approved by Laurent.

M  +15   -13   akonadi/src/widgets/tagselectwidget.cpp
M  +15   -13   akonadi/src/widgets/tagselectwidget.h

http://commits.kde.org/kdepimlibs/a7831bbdfdf9896eb9518bca1abb94185d81bdac

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


[kdepimlibs] [Bug 351752] Licensing issues in kdepimlibs 15.08.0

2015-09-26 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=351752

--- Comment #2 from Volker Krause <vkra...@kde.org> ---
Git commit 762d4beae2d761b76c3eb8212523c64ddb2ff4c0 by Volker Krause.
Committed on 26/09/2015 at 09:46.
Pushed by vkrause into branch 'Applications/15.08'.

Relicense two accidentally GPLed files in libakonadi.

Approved by Dan of course.

M  +17   -19   akonadi/src/core/notificationbus_p.cpp
M  +17   -19   akonadi/src/core/notificationbus_p.h

http://commits.kde.org/kdepimlibs/762d4beae2d761b76c3eb8212523c64ddb2ff4c0

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


[kdepimlibs] [Bug 351752] Licensing issues in kdepimlibs 15.08.0

2015-09-25 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=351752

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

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

--- Comment #1 from Volker Krause <vkra...@kde.org> ---
There's lots of tests (not packaged) and kioslave (quasi separate executables)
code in that list, the relevant bits of actually wrongly licensed library code
seem to be:

akonadi/src/core/notificationbus_p.* (Dan)
akonadi/src/core/newmailnotifierattribute.* (Laurent)
akonadi/src/core/pop3resourceattribute.* (Laurent)
akonadi/src/widgets/tagselectwidget.* (Christian)

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


[kimap] [Bug 352223] Sent mails are not syncronized to the server

2015-09-05 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=352223

Volker Krause <vkra...@kde.org> changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Latest Commit||http://commits.kde.org/kima
   ||p/5baa874efeee6cdb28995037e
   ||d9184a7fb822d36
 Resolution|--- |FIXED

--- Comment #7 from Volker Krause <vkra...@kde.org> ---
Git commit 5baa874efeee6cdb28995037ed9184a7fb822d36 by Volker Krause.
Committed on 05/09/2015 at 14:19.
Pushed by vkrause into branch 'Applications/15.08'.

Don't localize the date here, this is part of the IMAP protocol.

Fix by Antonio Rojas.

M  +1-1src/appendjob.cpp

http://commits.kde.org/kimap/5baa874efeee6cdb28995037ed9184a7fb822d36

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


[kmail2] [Bug 328298] Mail disappears after having been copied to a folder

2013-12-12 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=328298

--- Comment #23 from Volker Krause vkra...@kde.org ---
We had a bug before where the source RID was not removed for an inter-resource
move. If that happens the next sync will remove the item locally if it hasn't
been pushed to the IMAP server in the meantime.

There should be code to handle this case in the Akonadi server already, I
suggest verifying that this is still in place and does the right thing. This
can easily be observed in akonadiconsole, if you move a message from a
different resource into an IMAP folder (while the IMAP resource is offline, to
ease observation) you should see an empty RID for that mail. If you still see
the old RID, that's likely the cause for this problem.

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


[Akonadi] [Bug 319450] Mailbox synchronization can miss important mailbox state updates -- broken EXISTS and UIDNEXT heuristic

2013-05-16 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=319450

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

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

--- Comment #1 from Volker Krause vkra...@kde.org ---
Please only report verified problems, not misunderstandings of the code.

The code cited above is only the part handling downloading of new messages,
detection of deletions, flag changes, etc happens elsewhere in that class as
well as to a large part in Akonadi::ItemSync.

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


[Bug 301261] Lost email while moving the folder from local to imap

2012-08-21 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=301261

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vkra...@kde.org
 Resolution|--- |FIXED

--- Comment #1 from Volker Krause vkra...@kde.org ---
This has been fixed in 4.9.

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


[Bug 281704] Mails were deleted after moving folder

2012-08-21 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=281704

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #4 from Volker Krause vkra...@kde.org ---
Cross-resource folder moves should be fixed in 4.9, comment #1 seems to be
about mail moves only though.

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


[Bug 303348] Mail copy of folders from Local to IMAP very bogus

2012-08-21 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=303348

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vkra...@kde.org
 Resolution|--- |FIXED

--- Comment #1 from Volker Krause vkra...@kde.org ---
This has been fixed in 4.9.

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


[Bug 295700] After upgrade to 4.8.1: QMYSQL3 is unable to execute statement due to BINLOG_FORMAT = STATEMENT

2012-04-18 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=295700

--- Comment #8 from Volker Krause vkra...@kde.org ---
My fix indeed was too aggressive for older MySQL versions and has just been
reverted.

If you are affected by the original problem, please post your
~/.local/share/akonadi/mysql.conf file, or at least check if that for some
reason contains a log_bin=... line (it should not).

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


[Bug 295700] After upgrade to 4.8.1: QMYSQL3 is unable to execute statement due to BINLOG_FORMAT = STATEMENT

2012-04-14 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=295700

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

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

--- Comment #3 from Volker Krause vkra...@kde.org ---
What MySQL server version are you using?

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


[Bug 295700] After upgrade to 4.8.1: QMYSQL3 is unable to execute statement due to BINLOG_FORMAT = STATEMENT

2012-04-14 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=295700

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

--- Comment #4 from Volker Krause vkra...@kde.org ---
Git commit 8f6eb20aaa854224a6d4070ee2459290ec431576 by Volker Krause.
Committed on 14/04/2012 at 14:50.
Pushed by vkrause into branch 'master'.

Set the MySQL binlog format explicitly.

The combination of the transaction isolation level we use and the default
binlog format doesn't work. Newer MySQL versions (= 5.5 apparently)
automatically switch to a supported format, older ones just fail.

We don't actually enable the binlog, nor do we need it, so I don't really
know why it's on for some users in the first place.

M  +5-0server/src/storage/mysql-global.conf

http://commits.kde.org/akonadi/8f6eb20aaa854224a6d4070ee2459290ec431576

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


[Bug 297696] Clang needs QHash Templates in Parenthesis

2012-04-14 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=297696

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

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

--- Comment #1 from Volker Krause vkra...@kde.org ---
Git commit 2ddfb99ecfb8a9c569466c84e9e2362609211ba3 by Volker Krause.
Committed on 14/04/2012 at 15:08.
Pushed by vkrause into branch '1.7'.

Build with Clang.

(cherry picked from commit 1ce93440f9dbfcd01a3f4c9f120e82a7dfb2)

M  +2-2server/src/nepomuk/queryserviceclient.h

http://commits.kde.org/akonadi/2ddfb99ecfb8a9c569466c84e9e2362609211ba3

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


[Bug 295550] Retrieving mails is very slow

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=295550

--- Comment #2 from Volker Krause vkra...@kde.org ---
Please check if the Nepomuk query service is still responding when this
happens, by running qdbus  org.kde.nepomuk.services.nepomukqueryservice
/nepomukqueryservice. If that fails or hangs, this is caused by the query
service being stuck, restarting Nepomuk should help as a workaround.

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


[Bug 241464] Error with the postgres backend: The value of a duplicated key breaks the unique constraint collectiontable_parentandnameindex

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=241464

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #11 from Volker Krause vkra...@kde.org ---
Fixed in kdepimlibs commit 662bfe163c486146c9e408d0add6fd5fcc415b83.

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


[Bug 276975] Akonadi server should free memory more aggresively

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=276975

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 CC||vkra...@kde.org

--- Comment #1 from Volker Krause vkra...@kde.org ---
What tool did you use to obtain these numbers?

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


[Bug 203530] create an Akonadi ressource for facebook inbox

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=203530

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 CC||kdepim-bugs@kde.org
  Component|general |Facebook Resource
   Assignee|vkra...@kde.org |mcgu...@kde.org

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


[Bug 291143] Creating folders on IMAP account doesn't work

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=291143

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

  Component|general |IMAP resource
   Assignee|kdepim-bugs@kde.org |er...@kde.org

--- Comment #4 from Volker Krause vkra...@kde.org ---
Writing back changes is independent of syncing (syncing is only for polling for
remote changes), you get an collectionAdded() signal immediately in this case,
assuming the resource is online.

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


[Bug 293895] Timestamp in log files

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=293895

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 CC||vkra...@kde.org
   Severity|normal  |wishlist

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


[Bug 293545] I don't need a nanny!

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=293545

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vkra...@kde.org
 Resolution|--- |UPSTREAM

--- Comment #1 from Volker Krause vkra...@kde.org ---
It's a limitation of MySQL, which Akonadi uses internally.

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


[Bug 225619] akonadi self creates ical resources randomly

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=225619

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

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

--- Comment #2 from Volker Krause vkra...@kde.org ---
Fixed a while ago in kdepimlibs commit
a9da6ca4d9823b39a81302cb1253339a3066157f.

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


[Bug 255654] Converting to akonadi leaves me with multiple calendars and adressbooks

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=255654

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||vkra...@kde.org
 Resolution|--- |FIXED

--- Comment #1 from Volker Krause vkra...@kde.org ---
Fixed in kdepimlibs in commit a9da6ca4d9823b39a81302cb1253339a3066157f a while
ago.

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


[Bug 258777] Intrusive and inaccurate dialog from AKonadi Agent

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=258777

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||vkra...@kde.org
 Resolution|--- |FIXED

--- Comment #1 from Volker Krause vkra...@kde.org ---
This dialog doesn't exist anymore since a few month.

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


[Bug 260761] akonadi fails to parse date on some rfc822 messages

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=260761

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

 CC||vkra...@kde.org
  Component|general |kmime
Product|Akonadi |kdepimlibs

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


  1   2   3   4   5   6   7   >