[kmail2] [Bug 394784] KMAIl 5.8.1: Reply to HTML-mail in text mode includes content from last mail

2023-08-29 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=394784

Wolfgang Bauer  changed:

   What|Removed |Added

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

--- Comment #17 from Wolfgang Bauer  ---
Ok, let's close it then.

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

[kmail2] [Bug 387061] REGRESSION: Large messages don't display in the viewer pane (eg. New Tumbleweed snapshot 20171117 released!)

2021-02-01 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=387061

--- Comment #47 from Wolfgang Bauer  ---
(In reply to RJVB from comment #45)
> (In reply to Wolfgang Bauer from comment #44)
> 
> > I do use QtWebKit with konqueror, and opening large OBS logs (which are just
> > text files) do take a while.
> 
> TBH, Konqueror is such a multipurpose tool that I have no idea what
> backend/engine/kpart it uses for rendering pure text.
I'm talking about opening a text file in the HTML renderer, whatever is the
default.

Konqueror can of course use other kparts to display files (katepart e.g.), but
that's not the topic here.

(In reply to Greg Rivers from comment #46)
> From a user perspective, it's more than reasonable to expect KMail to
> display large plain text messages as well as other common MUAs do. Rather
> than using QtWebEngine to display plain text, shouldn't an efficient method
> such as the one employed by "View Source" be used for all text/plain MIME
> parts?
I don't think so, no. Without a large rewrite anyway, as mentioned.

KMail does add HTML stuff to an EMail even if it's just plain text, such as the
header, links to attachments, and so on.

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

[kmail2] [Bug 387061] REGRESSION: Large messages don't display in the viewer pane (eg. New Tumbleweed snapshot 20171117 released!)

2021-02-01 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=387061

--- Comment #44 from Wolfgang Bauer  ---
(In reply to RJVB from comment #43)
> > TBH, I think even QtWebKit would struggle with these large mails
> 
> That would be simple to test in konqueror with the webkit backend, or
> Otter-Browser, and the rebooted QtWebKit. Or in epiphany.
> 1 caveat emptor: we don't actually know what clever tricks the web email
> interface pulls.
I do use QtWebKit with konqueror, and opening large OBS logs (which are just
text files) do take a while.

> > Anyway, this is kind of a different problem than comment#35 (or comment#0).
> > I don't see how it could be fixed from the kmail side, except for not trying
> > to display mails larger than a certain size at all. (or maybe just display
> > it as plain text instead then, but that probably means a large rewrite of
> > the code, and I'm not sure it's possible at all)
> 
> - Don't dump the entire message into the rendering widget but use a paged
> approach
> - wrapper code can be written that connects to different backends. If you
> don't want to support QtWebkit, fine, but there's also QTextBrowser which
> should be sufficient even for simple HTML emails (it's what Qt's assistant
> uses by default since whatever Qt version that obsoleted QtWebkit). I've
> done a compile-time version of such wrapper code for KDevelop's help browser
> (which supports both QWE and QWK). I think it should be possible at least to
> chose between backends as a startup option.
That's what I meant with a "large rewrite" amongst other things.
Please note that I'm not a kmail developer though.

> Out of curiosity: does that humongous QWE process exit when you close the
> message view, or do you have to quit KMail to recuperate all that RAM?
I think that the QWE process is reused.
I'm not sure though, nor if it frees the resources when you switch to a
different mail (I think it does).

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

[kmail2] [Bug 387061] REGRESSION: Large messages don't display in the viewer pane (eg. New Tumbleweed snapshot 20171117 released!)

2021-02-01 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=387061

--- Comment #42 from Wolfgang Bauer  ---
(In reply to Attila from comment #41)
> Firefox can display this e-mail within 2 seconds and I can scroll very
> smooth through  the content by dragging the scrollbar.
Have you tried in Chromium though? (which is what QtWebEngine is based upon)

TBH, I think even QtWebKit would struggle with these large mails, according to
my experiences with OBS build logs... (KHTML served better in this regard, but
that's completely dead now)

Anyway, this is kind of a different problem than comment#35 (or comment#0).
I don't see how it could be fixed from the kmail side, except for not trying to
display mails larger than a certain size at all. (or maybe just display it as
plain text instead then, but that probably means a large rewrite of the code,
and I'm not sure it's possible at all)

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

[kmail2] [Bug 387061] REGRESSION: Large messages don't display in the viewer pane (eg. New Tumbleweed snapshot 20171117 released!)

2021-01-11 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=387061

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #36 from Wolfgang Bauer  ---
(In reply to Axel Braun from comment #35)
> Looks like the issue is back:
The issue us not really "back". Rather, it was actually not *fully* fixed, for
every possible email.

As proposed in comment#29, messagelib does use a temporary file now for larger
emails, because setting the content with QWebEngineView::setContent() or
QWebEngineView::setHTML() has a 2MB limit (see comment#5).

But the problem is that AFAICT it is impossible to know in advance how big the
message exactly is *after* QWebEngine's internal processing.

To quote from the docs:
> Note: Content larger than 2 MB cannot be displayed, because setHtml() 
> converts 
> the provided HTML to percent-encoding and places data: in front of it to
> create the URL that it navigates to. Thereby, the provided code becomes a URL
> that exceeds the 2 MB limit set by Chromium.

So apparently your mail is an "edge case" that is smaller than 200 bytes
(the current threshold in messagelib), but that still becomes too large for
QtWebEngine/Chromium after the percent-encoding done internally.

Larger emails, like the one mentioned in the title, do (still) display fine now
though, because they are correctly detected as being too large.

It should be easy to fix for that particular mail by lowering the size limit,
but the lower limit may still be too high for certain other emails. OTOH,
setting it too low is not good either, as that way of displaying mails seems to
cause problems with encoding (see comment#28).

But I just noticed that the docs also say:
> If the content is too large, the loadFinished() signal is triggered with 
> success=false.
Maybe this could be exploited as trigger for using a temporary file instead of
a size check?
Just an idea, I don't know if it's really possible to do that (it would
probably be quite tricky to implement at least, I fear).

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

[kjots] [Bug 291191] Plasma crashed while adding the Akonotes widget

2020-12-14 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=291191

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |UNMAINTAINED
 Status|NEEDSINFO   |RESOLVED
 CC||wba...@tmo.at

--- Comment #16 from Wolfgang Bauer  ---
(In reply to Justin Zobel from comment #15)
> As it has been a while since this was reported, can you please test and
> confirm if this issue is still occurring or if this bug report can be marked
> as resolved.
It's unlikely to be still occuring, as the Akonotes Plasma widget doesn't exist
anymore... ;-)

It never was ported to Plasma5, and removed in
https://invent.kde.org/pim/kjots/-/commit/b01df402a92ec2ce21d3636253f6c51bc69f5eff
.

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

[Akonadi] [Bug 429504] unable to collect/sync gmail account

2020-11-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=429504

--- Comment #2 from Wolfgang Bauer  ---
Meanwhile everything has been rebuilt successfully in the openSUSE repos.

So please uodate your system, and the crash should hopefully be gone.
If not, feel free to reopen this bug report, or file a new one.
Thanks.

Btw, the build failure was due to the cmake version (akonadi failed to compile
with older versions), and actually fixed in akonadi upstream meanwhile:
https://invent.kde.org/pim/akonadi/-/commit/35c64fc2244821297d512fb5ff15cd342d5150f7
https://invent.kde.org/pim/akonadi/-/commit/0586ae9d4f4fc5ef27b11e6c397f049bbd405e19

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

[Akonadi] [Bug 429504] unable to collect/sync gmail account

2020-11-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=429504

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DOWNSTREAM
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #1 from Wolfgang Bauer  ---
I can see in your backtrace that you use kdepim-runtime 20.08.3 and kimap
20.11.80.
This mix of versions is not supported and likely the reason for the crash.

You are also using openSUSE Leap 15.1 with the additional KDE repos where
akonadi-server fails to build currently, and that's probably leading to your
problem.

Closing as DOWNSTREAM therefore.

As I am an openSUSE packager, I'll look into this though.

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

[Akonadi] [Bug 427575] I have try to send a E-Mail

2020-10-12 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=427575

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #3 from Wolfgang Bauer  ---
This looks like bug#421930, which should be fixed in the brand new 5.15.2
(20.08.2).

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

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

[Akonadi] [Bug 421930] Crash when asking to input password

2020-10-12 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=421930

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||groni3...@gmail.com

--- Comment #5 from Wolfgang Bauer  ---
*** Bug 427575 has been marked as a duplicate of this bug. ***

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

[korganizer] [Bug 424742] Korganizer crashes when editing categories colors

2020-09-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=424742

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Wolfgang Bauer  ---


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

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

[korganizer] [Bug 413740] Korganizer crashes when setting catergories colors

2020-09-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=413740

--- Comment #7 from Wolfgang Bauer  ---
*** Bug 424742 has been marked as a duplicate of this bug. ***

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

[Akonadi] [Bug 424579] Incorrect parsing/interpretation of a path to Local Folder (creates file: in $HOME)

2020-09-07 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=424579

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #3 from Wolfgang Bauer  ---
And it's a duplicate of bug#408354 (or bug#411269, or bug#413588) anyway...

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

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

[Akonadi] [Bug 424579] Incorrect parsing/interpretation of a path to Local Folder (creates file: in $HOME)

2020-09-07 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=424579

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #2 from Wolfgang Bauer  ---
Can you still reproduce it with a more current version?

It should actually be fixed since 5.14 (part of the 20.04 releases).
https://invent.kde.org/pim/kdepim-runtime/-/commit/93ecfacfb9f21ee027dbcfc7d5d47ddbbb253ba1

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

[kmail2] [Bug 423385] Filtering leaves one email behind

2020-08-19 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=423385

--- Comment #1 from Wolfgang Bauer  ---
*** Bug 425531 has been marked as a duplicate of this bug. ***

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

[kmail2] [Bug 425531] Filter on incoming emails, leaves last one in inbox

2020-08-19 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=425531

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #1 from Wolfgang Bauer  ---
Isn't this the same as bug#423385?

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

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

[kmail2] [Bug 359813] images inserted in mail with CID are not displayed

2020-08-15 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=359813

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #14 from Wolfgang Bauer  ---
(In reply to Volker Helm from comment #13)
> I'm sorry to open the bug again.
> 
> The image of the CID will shown in text-view at the bottom of the mail.
> 
> If you enter html-view, the image of the CID will not shown. For example
> [cid:image001.png@01D66AF3.EA9EC840].
> But you can save the image to a file.
> 
> Also the image will not shown, if you change to text-view again. 
> 
> I can send an example if needed.

Might be the same as bug#423267 which should be fixed in kontact 5.15.0
(20.08.0).
Which version are you using?

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

[kmail2] [Bug 423267] Image Files Not Showing In Messages Again

2020-08-15 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=423267

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||axel.br...@gmx.de

--- Comment #4 from Wolfgang Bauer  ---
*** Bug 425393 has been marked as a duplicate of this bug. ***

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

[kontact] [Bug 425393] Embedded picture not displayed

2020-08-15 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=425393

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||wba...@tmo.at
 Resolution|--- |DUPLICATE

--- Comment #1 from Wolfgang Bauer  ---
Sounds like bug#423267 that should be fixed in 5.15.0 (20.08.0).

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

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

[Akonadi] [Bug 425228] Akonadi Server Fails to Start with MariaDB installed

2020-08-13 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=425228

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---
Looks like a packaging error, /etc/xdg/akonadi/mysql-global.conf seems to be
missing/cannot be opened:
(In reply to yo from comment #0)
> Could not open required defaults file: /etc/xdg/akonadi/mysql-global.conf
> Fatal error in defaults handling. Program aborted

You probably should report this to your distribution.


If you are using KDE Neon, I suppose it's related to bug#411093...

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

[kmail2] [Bug 387061] REGRESSION: Large messages don't display in the viewer pane (eg. New Tumbleweed snapshot 20171117 released!)

2020-07-30 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=387061

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit|https://commits.kde.org/mes |https://invent.kde.org/pim/
   |sagelib/991eb9c20286bdce245 |messagelib/commit/706aad16c
   |8d7dbc17765dd7b0d7b38   |5927cee5ff6a6bf6d608f8842c4
   ||e9db
 Resolution|--- |FIXED
   Version Fixed In|5.14.0  |5.15.0

--- Comment #32 from Wolfgang Bauer  ---
Git commit 706aad16c5927cee5ff6a6bf6d608f8842c4e9db by Wolfgang Bauer.
Committed on 30/07/2020 at 08:31.
Pushed by mlaurent into branch 'release/20.08'.

Fix size threshold for "big email" codepath

The maximum size supported by QWebEngineView::setContent() is 2 MB, not 2 GB.
FIXED-IN: 5.15.0

M  +1-1messageviewer/src/htmlwriter/webengineparthtmlwriter.cpp

https://invent.kde.org/pim/messagelib/commit/706aad16c5927cee5ff6a6bf6d608f8842c4e9db

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

[frameworks-kholidays] [Bug 424547] Kholidays doesn't show the Jewish holidays

2020-07-24 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=424547

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Wolfgang Bauer  ---
See bug#383896.

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

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

[frameworks-kholidays] [Bug 383896] Israel's holidays are not displayed

2020-07-24 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=383896

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||omeritzicschwa...@gmail.com

--- Comment #17 from Wolfgang Bauer  ---
*** Bug 424547 has been marked as a duplicate of this bug. ***

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

[kdeplasma-addons] [Bug 424449] can't delete note on taskbar

2020-07-20 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=424449

Wolfgang Bauer  changed:

   What|Removed |Added

Version|5.14.2  |5.18.5
   Assignee|kdepim-bugs@kde.org |plasma-b...@kde.org
 CC||wba...@tmo.at
Product|knotes  |kdeplasma-addons
  Component|general |notes

--- Comment #1 from Wolfgang Bauer  ---
(In reply to Michael K. from comment #0)
> SUMMARY
> I used drag and drop to put a node in the taskbar, which cannot be deleted
> easily.
> I have to go to the taskbar settings to delete it.
> Actually I expected a Delete button on knote or something similar.

That rather sounds like it's about Plasma's notes applet, not knotes.

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

[kmailtransport] [Bug 400195] Some emails stays in outgoing folder

2020-06-19 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=400195

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #5 from Wolfgang Bauer  ---
(In reply to Samuel Gilbert from comment #4)
> Authentication: XOAUTH2
See bug#421664.

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

[kmail2] [Bug 422746] Mail Header layout broken

2020-06-14 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=422746

--- Comment #3 from Wolfgang Bauer  ---
(In reply to Enno Gotthold from comment #2)
> (In reply to Wolfgang Bauer from comment #1)
> > Will probably be fixed by 
> > https://invent.kde.org/pim/messagelib/-/commit/
> > 1f2548805df60707ffba2bba27d35d441232d140 in the upcoming 20.04.2 release.
> 
> Can I test this somehow?

It should be in Tumbleweed in a couple of days.

You could install messagelib from the KDE:Applications repo, although that may
not necessarily work without updating everything to that repo.

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

[Akonadi] [Bug 422568] akonadiconsole crashes on exit

2020-06-12 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=422568

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #1 from Wolfgang Bauer  ---
Same crash as in bug#421434.

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

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

[kontact] [Bug 368371] kontact crashes reliably upon browsing through unread emails

2020-06-12 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=368371

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||marianker...@gmail.com

--- Comment #20 from Wolfgang Bauer  ---
*** Bug 422775 has been marked as a duplicate of this bug. ***

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

[kontact] [Bug 422775] KMail chrashes after jump from one imap recousrce-folder to another

2020-06-12 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=422775

--- Comment #2 from Wolfgang Bauer  ---


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

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

[kontact] [Bug 422775] KMail chrashes after jump from one imap recousrce-folder to another

2020-06-12 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=422775

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

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

[Akonadi] [Bug 422433] akonadi constanly crash when updating database (due to rollback)

2020-06-12 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=422433

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #4 from Wolfgang Bauer  ---
(In reply to Kerler Marian from comment #3)
> Created attachment 129243 [details]
> New crash information added by DrKonqi
> 
> kontact (5.13.3 (19.12.3)) using Qt 5.12.8
> 
> - What I was doing when the application crashed:
> 
> Changed Imap Resource and then open Email
> 
> -- Backtrace (Reduced):
> #6  __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
> #7  0x7f6358332859 in __GI_abort () at abort.c:79
> #8  0x7f6358332729 in __assert_fail_base (fmt=0x7f6343716422 "%s%s%s:%u:
> %s%sZusicherung \302\273%s\302\253 nicht erf\303\274llt.\n%n",
> assertion=0x7f6341c6c068 "kref", file=0x7f6341c6c052 "../nouveau/pushbuf.c",
> line=723, function=) at assert.c:92
> #9  0x7f6358343f36 in __GI___assert_fail
> (assertion=assertion@entry=0x7f6341c6c068 "kref",
> file=file@entry=0x7f6341c6c052 "../nouveau/pushbuf.c", line=line@entry=723,
> function=function@entry=0x7f6341c6c1a0 <__PRETTY_FUNCTION__.6636>
> "nouveau_pushbuf_data") at assert.c:101
> #10 0x7f6341c69547 in nouveau_pushbuf_data (push=0x55dc39ee6c60,
> bo=0x55dc39ee6150, offset=275512, length=552) at ../nouveau/pushbuf.c:723

That's a well knwon bug in the nouveau driver, but totally unrelated to the
original report.

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

[kmail2] [Bug 422746] Mail Header layout broken

2020-06-10 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=422746

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---
Will probably be fixed by 
https://invent.kde.org/pim/messagelib/-/commit/1f2548805df60707ffba2bba27d35d441232d140
in the upcoming 20.04.2 release.

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

[akregator] [Bug 399570] Akregator crashes after clicking on link in an open tab

2020-05-20 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=399570

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||annu...@yahoo.com

--- Comment #15 from Wolfgang Bauer  ---
*** Bug 415945 has been marked as a duplicate of this bug. ***

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

[akregator] [Bug 415945] Akregator crash when opening link

2020-05-20 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415945

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #2 from Wolfgang Bauer  ---


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

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

[kmail2] [Bug 420740] adding of inline images broken

2020-05-17 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=420740

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
   Version Fixed In||5.14.1

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

[kmail2] [Bug 421585] Failure to Send/save Inline pictures

2020-05-17 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=421585

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
 Resolution|FIXED   |DUPLICATE

--- Comment #1 from Wolfgang Bauer  ---


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

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

[kmail2] [Bug 420740] adding of inline images broken

2020-05-17 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=420740

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||c.g.fu...@gmail.com

--- Comment #8 from Wolfgang Bauer  ---
*** Bug 421585 has been marked as a duplicate of this bug. ***

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

[kmail2] [Bug 421647] KMail doesn't send images correctly

2020-05-17 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=421647

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED
 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---


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

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

[kmail2] [Bug 420740] adding of inline images broken

2020-05-17 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=420740

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||marcin.ba...@gmail.com

--- Comment #7 from Wolfgang Bauer  ---
*** Bug 421647 has been marked as a duplicate of this bug. ***

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

[kmail2] [Bug 394784] KMAIl 5.8.1: Reply to HTML-mail in text mode includes content from last mail

2020-04-28 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=394784

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||a...@mpe.mpg.de

--- Comment #14 from Wolfgang Bauer  ---
*** Bug 420696 has been marked as a duplicate of this bug. ***

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

[kmail2] [Bug 420696] reply: selected text of another message is quoted in the composer

2020-04-28 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=420696

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #1 from Wolfgang Bauer  ---
It'S a bug in Qt (QtWebEngine), should be fixed in 5.14.2.

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

-- 
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 Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=409001

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #16 from Wolfgang Bauer  ---
FTR, as I found out yesterday, the crash in openSUSE Leap 15.1 was because
libopenjpeg1 and libopenjp2 were loaded into the same process.

Leap's ffmpeg-3 (libavcodec57) package is built with openjpeg1, and is used by
QtWebEngine. So poppler (which uses libopenjp2) ended up calling some functions
from libopenjpeg1 instead (both libs contain functions with the same name),
resulting in some things not being initialized properly and leading to the
crash in libopenjp2 later on.

The switch to using an external process actually fixed that as well btw, as the
separate executable has much smaller dependencies, in particular it doesn't
load QtWebEngine...

-- 
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-05 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=409001

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||abeisem...@gmail.com

--- Comment #15 from Wolfgang Bauer  ---
*** Bug 417979 has been marked as a duplicate of this bug. ***

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

[kmail2] [Bug 417979] Kmail crashes when opening a special email

2020-04-05 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=417979

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #4 from Wolfgang Bauer  ---
(In reply to Stefan Gruber from comment #3)
> How can I disable bodypartformatter-plugin?
Delete the file
/usr/lib64/qt5/plugins/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so,
there is no other way.

This is a duplicate though.

And see https://bugzilla.opensuse.org/show_bug.cgi?id=1165440 for an openSUSE
bug report.

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

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

[kontact] [Bug 414102] KMail crashes when trying to open E-Mail

2020-04-05 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=414102

--- Comment #6 from Wolfgang Bauer  ---
Bug#417979 has a mail attached though, I'll have a try if I can reproduce the
crash with that...

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

[kontact] [Bug 419572] Akonadi / Kontact crashes at system startup when started in automatic with the desktop

2020-04-03 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=419572

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #2 from Wolfgang Bauer  ---
Does it help if you revert the last glibc update?
E.g. YaST->Software Management, search for glibc, click on "Versions" and
install an older one.

I did notice some openSUSE bugreports about crashes after the last update in
Leap 15.1 (GNOME related, but still).
I.e. it might be a downstream issue.

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

[kmail2] [Bug 419157] Wrong encoding of incoming emails

2020-04-03 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=419157

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---
Maybe the same as bug#416758?
Should be fixed in 5.14.0 (part of the 20.04 release) then.

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

[kontact] [Bug 414102] KMail crashes when trying to open E-Mail

2020-04-02 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=414102

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at

--- Comment #5 from Wolfgang Bauer  ---
There is an openSUSE bug report meanwhile:
https://bugzilla.opensuse.org/show_bug.cgi?id=1165440

But as Christoph Feck indicated, we'd need a PDF file (or probably better the
whole email) that triggers the crash.

Btw, as a workaround you can remove or rename the kitinerary plugin, e.g.:
sudo rm
/usr/lib64/qt5/plugins/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so

The crash should be avoided in newer KDEPIM versions by using an external
process for the semantic extraction, see bug#409001.

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

-- 
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-02 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=409001

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||rip...@freakmail.de

--- Comment #14 from Wolfgang Bauer  ---
*** Bug 414102 has been marked as a duplicate of this bug. ***

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

[kmail2] [Bug 387061] Large messages don't display in the viewer pane (eg. New Tumbleweed snapshot 20171117 released!)

2020-04-01 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=387061

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||i...@kobaltwit.be

--- Comment #25 from Wolfgang Bauer  ---
*** Bug 419298 has been marked as a duplicate of this bug. ***

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

[kmail2] [Bug 419298] Big mails fail to display body

2020-04-01 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=419298

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
 Resolution|FIXED   |DUPLICATE

--- Comment #2 from Wolfgang Bauer  ---
(In reply to Laurent Montel from comment #1)
> Fixed in 5.13.3
5.14.0 actually (which is not released yet), the fix was never pushed to the
release/19.12 branch.

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

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

[kmail2] [Bug 394784] KMAIl 5.8.1: Reply to HTML-mail in text mode includes content from last mail

2020-04-01 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=394784

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #13 from Wolfgang Bauer  ---
(In reply to Christoph Vogtländer from comment #11)
> if the bug is related to the Qt version rather
> than to KMail this would explain this. Either OpenSUSE uses a newer Qt
> version or ships with a patch.
Yes, openSUSE already contains a patch to fix the problem in QtWebEngine.
But the commit in comment#2 disables the feature for all versions above 5.14.0,
so that needs to be reverted/adjusted as well.

OTOH, kdepim 5.14 (20.04) beta has the check removed again, so compiling that
version would work too.

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

[akregator] [Bug 419130] Akregator crashes when I click "watch on Youtube".

2020-03-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=419130

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #2 from Wolfgang Bauer  ---


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

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

[akregator] [Bug 399570] Akregator crashes after clicking on link in an open tab

2020-03-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=399570

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||liusish...@gmail.com

--- Comment #14 from Wolfgang Bauer  ---
*** Bug 419130 has been marked as a duplicate of this bug. ***

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

[kontact] [Bug 419035] Kontact Crashes Opening Settings

2020-03-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=419035

--- Comment #3 from Wolfgang Bauer  ---


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

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

[kontact] [Bug 419035] Kontact Crashes Opening Settings

2020-03-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=419035

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #2 from Wolfgang Bauer  ---
This is actually the same crash as bug#417396, which is fixed in KDE Frameworks
(kcmutils) 5.68.0.

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

[kontact] [Bug 415634] kontact crash on opening settings

2020-03-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

--- Comment #17 from Wolfgang Bauer  ---
(In reply to Paulo Fidalgo from comment #16)
> -- Backtrace (Reduced):
> #6  0x7f40ccc4262a in KCModuleProxy::realModule() const () from
> /lib64/libKF5KCMUtils.so.5
> #7  0x7f40ccc42b9d in KCModuleProxy::buttons() const () from
> /lib64/libKF5KCMUtils.so.5
> #8  0x7f40ccc3fca0 in KCMultiDialogPrivate::_k_clientChanged() () from
> /lib64/libKF5KCMUtils.so.5
That is another case of bug#417396, fixed in KDE Frameworks 5.68.0.

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

[kontact] [Bug 418802] Kontact crash when opening settings

2020-03-13 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=418802

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---


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

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

[kontact] [Bug 418674] Kontact crashes everytime "Configure Kontact" is pressed

2020-03-09 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=418674

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #1 from Wolfgang Bauer  ---


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

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

[kmail2] [Bug 418005] "Only quote selected text when replying" does not work

2020-03-05 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=418005

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #2 from Wolfgang Bauer  ---


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

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

[kmail2] [Bug 394784] KMAIl 5.8.1: Reply to HTML-mail in text mode includes content from last mail

2020-03-05 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=394784

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||k...@mockies.de

--- Comment #8 from Wolfgang Bauer  ---
*** Bug 418005 has been marked as a duplicate of this bug. ***

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

[kontact] [Bug 418429] Kontact crashes after clicking on Configure Kontact

2020-03-03 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=418429

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|FIXED   |DUPLICATE
 CC||wba...@tmo.at

--- Comment #2 from Wolfgang Bauer  ---


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

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

[Akonadi] [Bug 418277] Kontact crashed after clicking configure

2020-03-01 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=418277

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #1 from Wolfgang Bauer  ---
The provided backtrace is from akonadiserver, not kontact...

But the kontact crash is likely bug#417396, a regression in KDE Frameworks
5.67.0 (kcmutils) that will be fixed in 5.68.0.

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

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

[kontact] [Bug 418341] Crash when opening "Configure Kontact"

2020-03-01 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=418341

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|FIXED   |DUPLICATE
 CC||wba...@tmo.at

--- Comment #2 from Wolfgang Bauer  ---


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

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

[kontact] [Bug 415634] kontact crash on opening settings

2020-02-26 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

--- Comment #14 from Wolfgang Bauer  ---
(In reply to Balazs Gallay from comment #13)
> Created attachment 126388 [details]
> New crash information added by DrKonqi
> 
> kontact (5.11.3) using Qt 5.13.2
> 
> Same as the original issue: 
> Kontact crashes when I click on the "Settings" / "Configure Kontact" menu
> 
> -- Backtrace (Reduced):
> #6  0x7ff27fd3862a in KCModuleProxy::realModule() const () from
> /lib64/libKF5KCMUtils.so.5
> #7  0x7ff27fd38b9d in KCModuleProxy::buttons() const () from
> /lib64/libKF5KCMUtils.so.5
> #8  0x7ff27fd35ca0 in KCMultiDialogPrivate::_k_clientChanged() () from
> /lib64/libKF5KCMUtils.so.5
> #9  0x7ff27fd36947 in KCMultiDialog::qt_static_metacall(QObject*,
> QMetaObject::Call, int, void**) () from /lib64/libKF5KCMUtils.so.5
> [...]
> #11 0x7ff27f9fe45f in KPageDialog::currentPageChanged(KPageWidgetItem*,
> KPageWidgetItem*) () from /lib64/libKF5WidgetsAddons.so.5
This is also bug#417396...

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

[kontact] [Bug 377832] Kontact crashes often, e.g. when going to Settings → Configure Kontact

2020-02-24 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=377832

--- Comment #5 from Wolfgang Bauer  ---
(In reply to chrisjohntapp from comment #4)
> Created attachment 126370 [details]
> New crash information added by DrKonqi
> 
> kontact (5.11.3) using Qt 5.13.2
> 
> - What I was doing when the application crashed:
> 
> Open Kontact, go to settings > configure kontact.
> 
> -- Backtrace (Reduced):
> #6  0x7f282cdfa62a in KCModuleProxy::realModule() const () from
> /lib64/libKF5KCMUtils.so.5
> #7  0x7f282cdfab9d in KCModuleProxy::buttons() const () from
> /lib64/libKF5KCMUtils.so.5
> #8  0x7f282cdf7ca0 in KCMultiDialogPrivate::_k_clientChanged() () from
> /lib64/libKF5KCMUtils.so.5
> #9  0x7f282cdf8947 in KCMultiDialog::qt_static_metacall(QObject*,
> QMetaObject::Call, int, void**) () from /lib64/libKF5KCMUtils.so.5
> [...]
> #11 0x7f282cac045f in KPageDialog::currentPageChanged(KPageWidgetItem*,
> KPageWidgetItem*) () from /lib64/libKF5WidgetsAddons.so.5

That is bug#417396, a regression in KDE Frameworks 5.67.0 that's already fixed
(to be in 5.68.0).
Totally unrelated to this bug report though, which is 2 years old.

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

[kmail2] [Bug 418005] "Only quote selected text when replying" does not work

2020-02-23 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=418005

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---
It has been disabled intentionally due to a bug in QtWebEngine, see bug#394784.

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

[kontact] [Bug 417910] Kontact crash when trying to configure

2020-02-21 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=417910

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #2 from Wolfgang Bauer  ---
(In reply to heikkivalisuo from comment #0)
> #6  0x7f3a41ca8d16 in KCModuleProxy::realModule (this=this@entry=0x0) at
> /usr/src/debug/kcmutils-5.67.0-1.1.x86_64/src/kcmoduleproxy.cpp:57
> #7  0x7f3a41ca8d99 in KCModuleProxy::buttons (this=0x0) at
> /usr/src/debug/kcmutils-5.67.0-1.1.x86_64/src/kcmoduleproxy.cpp:264
> #8  0x7f3a41cb0342 in KCMultiDialogPrivate::_k_clientChanged
> (this=) at
> /usr/src/debug/kcmutils-5.67.0-1.1.x86_64/src/kcmultidialog.cpp:184
> #9  0x7f3a41caadc7 in KCMultiDialogPrivate::_k_slotCurrentPageChanged
> (previous=, current=0x55797f0f74e0, this=0x55797f011590) at
> /usr/src/debug/kcmutils-5.67.0-1.1.x86_64/src/kcmultidialog.cpp:117

Regression in kcmutils 5.67.0, will be fixed in 5.68.0.
(the fix has already been submitted to Tumbleweed and should be included in the
next snapshot)

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

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

[kontact] [Bug 415634] kontact crash on opening settings

2020-02-18 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

--- Comment #12 from Wolfgang Bauer  ---
(In reply to Eoghann Walker from comment #11)
> Bug seems to be resolved with updates to:
> KDE Framework 5.68.0
Yes, bug#417396 (that's what you posted in comment#2 here) is fixed already
(the fix will be in KDE Frameworks 5.68.0 that's not released yet, but KDE Neon
Testing Edition probably has it already).

But not *this* one, which is a completely different crash.

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

[kontact] [Bug 415634] kontact crash on opening settings

2020-02-17 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

--- Comment #10 from Wolfgang Bauer  ---
(In reply to Morbid from comment #9)
> The same issue is present on Arch.
> Operating System: Arch Linux 
> KDE Plasma Version: 5.18.0
> KDE Frameworks Version: 5.67.0

I find it very likely that you actually experience bug#417396, which is a
regression in KDE Frameworks 5.67 and is 100% reliable to crash kontact when
opening the settings AFAICT (unlike this bug)...

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

[kontact] [Bug 415634] kontact crash on opening settings

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

--- Comment #8 from Wolfgang Bauer  ---
Here's a better backtrace (with debugsymbols):
Thread 1 (Thread 0x7f8b62932980 (LWP 18722)):
[KCrash Handler]
#6  QHashData::nextNode (node=node@entry=0x55d8746866a0) at tools/qhash.cpp:598
#7  0x7f8b5d09592a in QHash::iterator::operator++
(this=) at /usr/include/qt5/QtCore/qhash.h:345
#8  QHash::erase (this=this@entry=0x55d87467e5a8,
it=..., it@entry=...) at /usr/include/qt5/QtCore/qhash.h:883
#9  0x7f8b5d094e62 in QSet::erase (i=..., this=0x55d87467e5a8) at
/usr/include/qt5/QtCore/qset.h:200
#10 QSet::erase (i=..., this=0x55d87467e5a8) at
/usr/include/qt5/QtCore/qset.h:196
#11 KViewStateSerializerPrivate::restoreSelection
(this=this@entry=0x55d87467e570) at
/usr/src/debug/kwidgetsaddons-5.67.0-lp151.207.1.x86_64/src/kviewstateserializer.cpp:294
#12 0x7f8b5d094fd7 in KViewStateSerializer::restoreSelection
(this=this@entry=0x55d874683590, indexStrings=...) at
/usr/src/debug/kwidgetsaddons-5.67.0-lp151.207.1.x86_64/src/kviewstateserializer.cpp:314
#13 0x7f8b5d0953f5 in KViewStateSerializerPrivate::processPendingChanges
(this=this@entry=0x55d87467e570) at
/usr/src/debug/kwidgetsaddons-5.67.0-lp151.207.1.x86_64/src/kviewstateserializer.cpp:180
#14 0x7f8b5d095627 in KViewStateSerializerPrivate::rowsInserted
(this=0x55d87467e570) at
/usr/src/debug/kwidgetsaddons-5.67.0-lp151.207.1.x86_64/src/kviewstateserializer.cpp:90
#15 KViewStateSerializer::qt_static_metacall (_o=,
_id=, _a=, _c=) at
/usr/src/debug/kwidgetsaddons-5.67.0-lp151.207.1.x86_64/build/src/KF5WidgetsAddons_autogen/include/moc_kviewstateserializer.cpp:77
#16 0x7f8b5fc624d9 in doActivate (sender=0x55d87465a650,
signal_index=13, argv=0x7fff5900e930) at kernel/qobject.cpp:3882
#17 0x7f8b5fc5cfb2 in QMetaObject::activate
(sender=sender@entry=0x55d87465a650, m=m@entry=0x7f8b600e2060
,
local_signal_index=local_signal_index@entry=10, argv=argv@entry=0x7fff5900e930)
at kernel/qobject.cpp:3930
#18 0x7f8b5fbc2b1e in QAbstractItemModel::rowsInserted
(this=this@entry=0x55d87465a650, _t1=..., _t2=, _t3=, _t4=...) at .moc/moc_qabstractitemmodel.cpp:592
#19 0x7f8b5fbca4db in QAbstractItemModel::endInsertRows
(this=0x55d87465a650) at itemmodels/qabstractitemmodel.cpp:2750
#20 0x7f8b5fbf1415 in QSortFilterProxyModelPrivate::insert_source_items
(this=this@entry=0x55d8746599b0, source_to_proxy=..., proxy_to_source=...,
source_items=..., source_parent=..., orient=orient@entry=Qt::Vertical,
emit_signal=true) at itemmodels/qsortfilterproxymodel.cpp:922
#21 0x7f8b5fbf3399 in QSortFilterProxyModelPrivate::source_items_inserted
(this=this@entry=0x55d8746599b0, source_parent=..., start=start@entry=0,
end=end@entry=0, orient=orient@entry=Qt::Vertical) at
itemmodels/qsortfilterproxymodel.cpp:1033
#22 0x7f8b5fbf59bd in QSortFilterProxyModelPrivate::_q_sourceRowsInserted
(this=0x55d8746599b0, source_parent=..., start=0, end=0) at
itemmodels/qsortfilterproxymodel.cpp:1661
#23 0x7f8b5fbf77f1 in QSortFilterProxyModel::qt_static_metacall
(_o=, _c=, _id=, _a=) at .moc/moc_qsortfilterproxymodel.cpp:282
#24 0x7f8b5fc624d9 in doActivate (sender=0x55d87462db70,
signal_index=13, argv=0x7fff5900ecd0) at kernel/qobject.cpp:3882
#25 0x7f8b5fc5cfb2 in QMetaObject::activate
(sender=sender@entry=0x55d87462db70, m=m@entry=0x7f8b600e2060
,
local_signal_index=local_signal_index@entry=10, argv=argv@entry=0x7fff5900ecd0)
at kernel/qobject.cpp:3930
#26 0x7f8b5fbc2b1e in QAbstractItemModel::rowsInserted
(this=this@entry=0x55d87462db70, _t1=..., _t2=, _t3=, _t4=...) at .moc/moc_qabstractitemmodel.cpp:592
#27 0x7f8b5fbca4db in QAbstractItemModel::endInsertRows
(this=this@entry=0x55d87462db70) at itemmodels/qabstractitemmodel.cpp:2750
#28 0x7f8b5eacd474 in Akonadi::EntityTreeModelPrivate::collectionsFetched
(this=0x55d87463c190, collections=...) at
/usr/src/debug/akonadi-server-19.12.2-lp151.336.1.x86_64/src/core/models/entitytreemodel_p.cpp:475
#29 0x7f8b5eabf31d in Akonadi::EntityTreeModel::qt_static_metacall
(_o=, _c=, _id=, _a=) at
/usr/src/debug/akonadi-server-19.12.2-lp151.336.1.x86_64/build/src/core/KF5AkonadiCore_autogen/include/moc_entitytreemodel.cpp:221
#30 0x7f8b5fc624d9 in doActivate (sender=0x55d8744a43a0,
signal_index=22, argv=0x7fff5900f020) at kernel/qobject.cpp:3882
#31 0x7f8b5fc5cfb2 in QMetaObject::activate
(sender=sender@entry=0x55d8744a43a0, m=m@entry=0x7f8b5ed68880
,
local_signal_index=local_signal_index@entry=0, argv=argv@entry=0x7fff5900f020)
at kernel/qobject.cpp:3930
#32 0x7f8b5ea67e02 in Akonadi::CollectionFetchJob::collectionsReceived
(this=this@entry=0x55d8744a43a0, _t1=...) at
/usr/src/debug/akonadi-server-19.12.2-lp151.336.1.x86_64/build/src/core/KF5AkonadiCore_autogen/include/moc_collectionfetchjob.cpp:179
#33 0x7f8b5ea68e84 in Akonadi::CollectionFetchJobPrivate::timeout
(this=0x55d873efbd80) at
/usr/src/debug/akonadi-server-19.12.2-lp151.336.1.x86_64/src/core/jobs/collectionfetchjob.cpp:81
#34

[kontact] [Bug 415634] kontact crash on opening settings

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

--- Comment #7 from Wolfgang Bauer  ---
(In reply to Wolfgang Bauer from comment #6)
> About the original crash reported here, I cannot reproduce that at all, on
> the same distribution (openSUSE Leap 15.1 + additional KDE repos).
> Maybe it's fixed already?

Ok, while testing a fix for the crash in bug#417396, I did encounter this crash
as well (when clicking around in the settings dialog).
So it is not fixed yet. Might be a bug in kwidgetsaddons though, that's where
it crashes.

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

[kontact] [Bug 417418] Kontact crash on opening settings

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=417418

--- Comment #5 from Wolfgang Bauer  ---


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

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

[frameworks-kcmutils] [Bug 417396] Kontact crashes opening settings.

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=417396

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|DUPLICATE   |---
   Assignee|kdepim-bugs@kde.org |kdelibs-b...@kde.org
Version|unspecified |5.67.0
Product|kontact |frameworks-kcmutils
 Status|RESOLVED|REPORTED
  Component|general |general

--- Comment #3 from Wolfgang Bauer  ---
The original creash in bug#415634 is something completely different.

This crash here seems to be caused by this change in kcmutils 5.67.0:
https://cgit.kde.org/kcmutils.git/commit/?id=f52314e6cf194c64edd331a98a31803bbd971484
Reverting this fixes the crash for me.

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

[kontact] [Bug 415634] kontact crash on opening settings

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #6 from Wolfgang Bauer  ---
(In reply to Eoghann Walker from comment #2)
> Thread 1 (Thread 0x7ff921f7f340 (LWP 7569)):
> [KCrash Handler]
> #6  0x7ff91d887646 in KCModuleProxy::realModule() const () at
> /usr/lib/x86_64-linux-gnu/libKF5KCMUtils.so.5
> #7  0x7ff91d887bd9 in KCModuleProxy::buttons() const () at
> /usr/lib/x86_64-linux-gnu/libKF5KCMUtils.so.5
> #8  0x7ff91d884ce0 in  () at
> /usr/lib/x86_64-linux-gnu/libKF5KCMUtils.so.5
> #9  0x7ff91d885937 in  () at
> /usr/lib/x86_64-linux-gnu/libKF5KCMUtils.so.5
> #10 0x7ff91f3c3805 in QMetaObject::activate(QObject*, int, int, void**)
> () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #11 0x7ff91c8301db in KPageDialog::currentPageChanged(KPageWidgetItem*,
> KPageWidgetItem*) () at /usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
> #12 0x7ff91f3c391f in QMetaObject::activate(QObject*, int, int, void**)
> () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #13 0x7ff91c81c61b in KPageWidget::currentPageChanged(KPageWidgetItem*,
> KPageWidgetItem*) () at /usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
> #14 0x7ff91c81c7dc in  () at
> /usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
> #15 0x7ff91f3c3805 in QMetaObject::activate(QObject*, int, int, void**)
> () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #16 0x7ff91c816757 in KPageView::currentPageChanged(QModelIndex const&,
> QModelIndex const&) () at /usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
> #17 0x7ff91c818149 in  () at
> /usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
> #18 0x7ff91f3c3805 in QMetaObject::activate(QObject*, int, int, void**)
> () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #19 0x7ff91f33c0c7 in
> QItemSelectionModel::selectionChanged(QItemSelection const&, QItemSelection
> const&) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #20 0x7ff91f340d00 in
> QItemSelectionModel::emitSelectionChanged(QItemSelection const&,
> QItemSelection const&) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #21 0x7ff91f34424b in QItemSelectionModel::select(QItemSelection const&,
> QFlags) () at
> /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #22 0x7ff91f33e16c in QItemSelectionModel::select(QModelIndex const&,
> QFlags) () at
> /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #23 0x7ff91f33c474 in QItemSelectionModel::setCurrentIndex(QModelIndex
> const&, QFlags) () at
> /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #24 0x7ff91c816e2a in  () at
> /usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
> #25 0x7ff91c817f65 in  () at
> /usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
> #26 0x7ff91f3c3805 in QMetaObject::activate(QObject*, int, int, void**)
> () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #27 0x7ff91f32e436 in
> QAbstractItemModel::layoutChanged(QList const&,
> QAbstractItemModel::LayoutChangeHint) () at
> /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #28 0x7ff91c81e306 in KPageWidgetModel::addPage(KPageWidgetItem*) () at
> /usr/lib/x86_64-linux-gnu/libKF5WidgetsAddons.so.5
> #29 0x7ff91d89d272 in  () at
> /usr/lib/x86_64-linux-gnu/libKF5KCMUtils.so.5
> #30 0x7ff91d89d4af in  () at
> /usr/lib/x86_64-linux-gnu/libKF5KCMUtils.so.5
> #31 0x7ff91d89daa7 in  () at
> /usr/lib/x86_64-linux-gnu/libKF5KCMUtils.so.5
> #32 0x7ff91d89eef4 in KSettings::Dialog::showEvent(QShowEvent*) () at
> /usr/lib/x86_64-linux-gnu/libKF5KCMUtils.so.5
> #33 0x7ff9201d8cb8 in QWidget::event(QEvent*) () at
> /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
> #34 0x7ff920197eac in QApplicationPrivate::notify_helper(QObject*,
> QEvent*) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
> #35 0x7ff92019f4b0 in QApplication::notify(QObject*, QEvent*) () at
> /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
> #36 0x7ff91f392e38 in QCoreApplication::notifyInternal2(QObject*,
> QEvent*) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
> #37 0x7ff9201d56e3 in QWidgetPrivate::show_helper() () at
> /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
> #38 0x7ff9201d8813 in QWidgetPrivate::setVisible(bool) () at
> /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
> #39 0x7ff92038db85 in QDialog::setVisible(bool) () at
> /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5
> #40 0x7ff9219b8bf4 in Kontact::MainWindow::slotPreferences() () at
> /usr/lib/x86_64-linux-gnu/libkontactprivate.so.5
> #41 0x7ff91f3c391f in QMetaObject::activate(QObject*, int, int, void

[kontact] [Bug 415634] kontact crash on opening settings

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||lnx...@westlot.net

--- Comment #4 from Wolfgang Bauer  ---
*** Bug 417396 has been marked as a duplicate of this bug. ***

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

[kontact] [Bug 417418] Kontact crash on opening settings

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=417418

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at

--- Comment #4 from Wolfgang Bauer  ---


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

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

[kontact] [Bug 417396] Kontact crashes opening settings.

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=417396

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at

--- Comment #2 from Wolfgang Bauer  ---


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

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

[kontact] [Bug 415634] kontact crash on opening settings

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415634

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||t...@tuor.org

--- Comment #5 from Wolfgang Bauer  ---
*** Bug 417418 has been marked as a duplicate of this bug. ***

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

[kontact] [Bug 377832] Kontact crashes often, e.g. when going to Settings → Configure Kontact

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=377832

--- Comment #3 from Wolfgang Bauer  ---
(In reply to Wolfgang Bauer from comment #2)
> You probably experience bug#415634, which I suppose is caused by a change in
> KDE Frameworks 5.67.0 (kxmlgui).
Erm, I mean kcmutils. At least that's where the crash from bug#415634 is
located.

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

[kontact] [Bug 377832] Kontact crashes often, e.g. when going to Settings → Configure Kontact

2020-02-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=377832

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||wba...@tmo.at
 Resolution|--- |UNMAINTAINED

--- Comment #2 from Wolfgang Bauer  ---
(In reply to JKS from comment #1)
> Can confirm this. Kontact crashes every time we I go to Settings ->
> Configure Kontact. This was not happening before updating to Plasma 5.18. 
That's likely unrelated, as this bug report is nearly 2 years old...

You probably experience bug#415634, which I suppose is caused by a change in
KDE Frameworks 5.67.0 (kxmlgui).

The originally reported crash here cannot possibly happen anymore, it was
crashing in Qt5Script but the latest grantlee version doesn't even use that at
all anymore a it has been ported to Qt5QML.
https://github.com/steveire/grantlee/commit/49709e3cff820b76bee66759e7437b63ac1f76cb

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

[Akonadi] [Bug 404990] Sign in with Google temporarily disabled for this app

2020-02-11 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=404990

--- Comment #114 from Wolfgang Bauer  ---
(In reply to Said Bakr from comment #113)
> The issue is also found for me at Kubuntu 18.04 when using Kio Gdrive from
> Dolphin.
That's fixed already (in kaccounts-providers 19.12.2):
https://cgit.kde.org/kaccounts-providers.git/commit/?id=0a71da4e3caae0defe200a85954fc7e2012010c1

But that has nothing to do with Akonadi or its IMAP resource.

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

[kdeplasma-addons] [Bug 417250] Can't past files on desktop using Ctrl+V

2020-02-06 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=417250

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
Product|knotes  |kdeplasma-addons
  Component|general |notes
   Assignee|kdepim-bugs@kde.org |plasma-b...@kde.org
Version|unspecified |5.17.5

--- Comment #1 from Wolfgang Bauer  ---
(In reply to Andrey Yashkin from comment #0)
> When there exists a KNotes widget on desktop
Plasma's notes widget is totally unrelated to KNotes, KNotes doesn't offer a
widget to add to the desktop. Changing the product/component appropriately.

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

[akregator] [Bug 416780] Akregator does not order items correctly by date.

2020-01-26 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=416780

--- Comment #2 from Wolfgang Bauer  ---
(In reply to Wolfgang Bauer from comment #1)
> The problem seems to be that some articles have a date/time of 07/02/06
> 07:28, which is actually 07-02-2106 and therefore newer than 26-01-2020.
PS: 07/02/06 07:28 corresponds to a timestamp of -1.

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

[akregator] [Bug 416780] Akregator does not order items correctly by date.

2020-01-26 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=416780

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---
Comment on attachment 125423
  --> https://bugs.kde.org/attachment.cgi?id=125423
Not working order by date akregator screenshot

AFAICS, the order is correct in the screenshot.
The problem seems to be that some articles have a date/time of 07/02/06 07:28,
which is actually 07-02-2106 and therefore newer than 26-01-2020.

See also bug#256034.

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

[kmail2] [Bug 416288] KMail crashes on address autocomplete lookup

2020-01-25 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=416288

--- Comment #3 from Wolfgang Bauer  ---
(In reply to Wolfgang Bauer from comment #2)
> Try to delete ~/.local/share/akonadi/searchdb/

Sorry, typo.
The folder is named search_db (with a _ ).

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

[kmail2] [Bug 416288] KMail crashes on address autocomplete lookup

2020-01-25 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=416288

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #2 from Wolfgang Bauer  ---
(In reply to Aaron Williams from comment #1)
> Note that I deleted all of the recent entries in the composer settings page
> and it still crashes. I do not know where this database is stored for
> completion.

Try to delete ~/.local/share/akonadi/searchdb/, or if that doesn't exist all
subfolders in ~/.local/share/baloo/ except "file" (which contains the file
index).

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

[kontact] [Bug 416721] KMail crashes after restarting

2020-01-25 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=416721

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||wba...@tmo.at
 Resolution|--- |DUPLICATE

--- Comment #1 from Wolfgang Bauer  ---
Please update your system.
The libQt5Core5 package was corrupted in the KDE:Qt5 repo and caused similar
crashes in several applications.

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

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

[kmail2] [Bug 416738] Kmail crash on opening

2020-01-25 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=416738

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---
Please update your system.
The libQt5Core5 package was corrupted in the KDE:Qt5 repo and caused similar
crashes in several applications.

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

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

[frameworks-kholidays] [Bug 383896] Israel's holidays are not displayed

2020-01-03 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=383896

--- Comment #15 from Wolfgang Bauer  ---
Maybe these changes in Qt 5.14 would help to reimplement/fix this?

https://wiki.qt.io/New_Features_in_Qt_5.14
- Qt Core
  + QCalendar adds support for Calendars other than Gregorian, by
implementation of suitable back-ends.
o Back-ends to implement the Gregorian, Jalali (Persian), Islamic Civil,
Milankovic, and Julian calendars. We look forward to other contributions.

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

[Akonadi] [Bug 404990] Sign in with Google temporarily disabled for this app

2019-12-17 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=404990

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||uo...@hotmail.de

--- Comment #99 from Wolfgang Bauer  ---
*** Bug 415280 has been marked as a duplicate of this bug. ***

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

[korganizer] [Bug 415280] Google

2019-12-17 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415280

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at

--- Comment #1 from Wolfgang Bauer  ---


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

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

[Akonadi] [Bug 415271] akonadi does not create the file_lost+found folder

2019-12-16 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=415271

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED
   Version Fixed In||5.10.1
 CC||wba...@tmo.at
  Latest Commit||https://cgit.kde.org/akonad
   ||i.git/commit/?id=28f2916db1
   ||a2ad98b00250eb4d5dd92ca1548
   ||c50
Version|GIT (master)|unspecified

--- Comment #1 from Wolfgang Bauer  ---
(In reply to Stefanos Harhalakis from comment #0)
> I'm using akonadi server 4:18.08.3-7 (debian testing).
That's not "GIT (master)" though, but rather 5.9.3 (which is over a year old
and no longer available in bugzilla's version field).

The problem however was fixed already in 18.12.1 (5.10.1):
https://cgit.kde.org/akonadi.git/commit/?id=28f2916db1a2ad98b00250eb4d5dd92ca1548c50

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

[Akonadi] [Bug 404990] Sign in with Google temporarily disabled for this app

2019-11-13 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=404990

--- Comment #80 from Wolfgang Bauer  ---
(In reply to Tom Chiverton from comment #75)
> Workaround doesn't work in Kmail v5.7.3 because both password and connection
> settings (to set to "plain") are disabled.
> Even for a freshly created IMAP connection.
> Something in KDE is disabling these because the email is @gmail ?

Try to use imap.googlemail.com as server, see
https://bugs.kde.org/show_bug.cgi?id=410700#c3

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

[Akonadi] [Bug 386985] akonadi CalDav resource not synching with certain servers

2019-11-11 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=386985

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #42 from Wolfgang Bauer  ---
(In reply to szymon.p...@gmail.com from comment #39)
> Today, in the morning I updated kio from version 5.63 to 5.64. 
> Problem solved, in my case of course.

That's bug#413316 though.

This one is about a completely different (and older) problem.

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

[korganizer] [Bug 413914] KOrganizer no longer synchronizes CalDAV events

2019-11-07 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=413914

Wolfgang Bauer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED

--- Comment #1 from Wolfgang Bauer  ---


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

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

[korganizer] [Bug 413316] Can't see the contents of my Nextcloud calendar

2019-11-07 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=413316

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||boven...@bovender.de

--- Comment #6 from Wolfgang Bauer  ---
*** Bug 413914 has been marked as a duplicate of this bug. ***

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

[korgac] [Bug 407277] KOrganizer crash on start after upgrade to 19.04

2019-10-29 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=407277

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||mitchell.g.mccl...@gmail.co
   ||M

--- Comment #2 from Wolfgang Bauer  ---
*** Bug 413575 has been marked as a duplicate of this bug. ***

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

[korganizer] [Bug 413575] crashes during loading of event calendar widget

2019-10-29 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=413575

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at
 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Wolfgang Bauer  ---


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

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

[Akonadi] [Bug 404990] Sign in with Google temporarily disabled for this app

2019-10-27 Thread Wolfgang Bauer
https://bugs.kde.org/show_bug.cgi?id=404990

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||enautge...@gmail.com

--- Comment #72 from Wolfgang Bauer  ---
*** Bug 413472 has been marked as a duplicate of this bug. ***

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

  1   2   3   4   >