[kmail2] [Bug 336653] kmail inverts HTML view settings

2018-01-31 Thread Denis Kurz
https://bugs.kde.org/show_bug.cgi?id=336653

Denis Kurz  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |UNMAINTAINED
 Status|NEEDSINFO   |RESOLVED

--- Comment #9 from Denis Kurz  ---
Just as announced in my last comment, I close this bug. If you encounter it
again in a recent version (at least 5.1 aka 15.12, preferably more recent),
please open a new one unless it already exists. Thank you for all your input.

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

[kmail2] [Bug 336653] kmail inverts HTML view settings

2017-06-23 Thread Denis Kurz
https://bugs.kde.org/show_bug.cgi?id=336653

Denis Kurz  changed:

   What|Removed |Added

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

--- Comment #8 from Denis Kurz  ---
This bug has never been confirmed for a KDE PIM version that is based on KDE
Frameworks (5.x). Those versions differ significantly from the old 4.x series.
Therefore, I plan to close it in around two or three months. In the meantime,
it is set to WAITINGFORINFO to give reporters the oportunity to check if it is
still valid. As soon as someone confirms it for a recent version (at least 5.1,
ideally even more recent), I'll gladly reopen it.

Please understand that we lack the manpower to triage bugs reported for
versions almost two years beyond their end of life.

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

[kmail2] [Bug 336653] kmail inverts HTML view settings

2014-11-06 Thread Arthur Țițeică
https://bugs.kde.org/show_bug.cgi?id=336653

Arthur Țițeică arthur.tite...@gmail.com changed:

   What|Removed |Added

 CC||arthur.tite...@gmail.com

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


[kmail2] [Bug 336653] kmail inverts HTML view settings

2014-09-29 Thread donniezazen
https://bugs.kde.org/show_bug.cgi?id=336653

donniezazen sud...@sudhirkhanger.com changed:

   What|Removed |Added

 CC||sud...@sudhirkhanger.com

--- Comment #6 from donniezazen sud...@sudhirkhanger.com ---
I have been hit by this bug. I am using KMail Version 4.14.1 on Platform
Version 4.14.1 on Fedora 20 Plasma 5.

Both prefer HTML and load external reference are enabled but everything is
being loaded as plain text.

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


[kmail2] [Bug 336653] kmail inverts HTML view settings

2014-09-29 Thread donniezazen
https://bugs.kde.org/show_bug.cgi?id=336653

--- Comment #7 from donniezazen sud...@sudhirkhanger.com ---
Looks like not. Checking/unchecking and restarting Kontact a few times made it
stick to global HTML. It's working for me. Sorry to bother.

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


[kmail2] [Bug 336653] kmail inverts HTML view settings

2014-06-24 Thread Thomas Tanghus
https://bugs.kde.org/show_bug.cgi?id=336653

--- Comment #1 from Thomas Tanghus tho...@tanghus.net ---
Maybe I should mention that I have no folder specific settings for the above,
and have never used any.

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


[kmail2] [Bug 336653] kmail inverts HTML view settings

2014-06-24 Thread Thomas Tanghus
https://bugs.kde.org/show_bug.cgi?id=336653

--- Comment #2 from Thomas Tanghus tho...@tanghus.net ---
OK, it seems I have found the reason:

I tried a while ago to have a separate addressbook for whitelisting specific
email adresses to show as HTML and load external references.
As that was ignored in previous versions I disabled the addressbook and went
back to just having it as default.
Now the contact specific settings is taken into account, instead of using that
setting, it inverts the global setting!

This sounds like an honest mistake and an easy fix.

My guess is that it is coded like this (pseudo code)

renderHTML = globalRenderHTML;
if(contactSettingRenderHTML) {
renderHTML = !globalRenderHTML;
}

Where instead it should be:

renderHTML = globalRenderHTML;
if(contactSettingRenderHTML) {
renderHTML = contactSettingRenderHTML;
}

While fixing it please consider only rendering the content after any contact
specific setting has been read, because as it is now it first shows the plain
text version and then afterwards it renders the HTML version.
Also the addressbook in question was disabled. Shouldn't disabled addressbooks
be ignored? Even though I would never have found the reason if they were ;)

But great that whitelisting email addresses this way works now :)

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


[kmail2] [Bug 336653] kmail inverts HTML view settings

2014-06-24 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=336653

Laurent Montel mon...@kde.org changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #3 from Laurent Montel mon...@kde.org ---
Problem with email that you want to see in plain text when global settings is
show as html was fixed in 4.14. We can't do it in 4.13.x because there is a
lot changes and there is a new menu to specify if we want to force folder in
plain text when global settings is html 

'Also the addressbook in question was disabled. Shouldn't disabled addressbooks
be ignored?' it's not show in kaddressbook it's not disable in akonadi. So it's
normal that it searchs in this addressbook too.

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


[kmail2] [Bug 336653] kmail inverts HTML view settings

2014-06-24 Thread Thomas Tanghus
https://bugs.kde.org/show_bug.cgi?id=336653

--- Comment #4 from Thomas Tanghus tho...@tanghus.net ---
(In reply to comment #3)
 Problem with email that you want to see in plain text when global settings
 is show as html was fixed in 4.14. We can't do it in 4.13.x because there
 is a lot changes and there is a new menu to specify if we want to force
 folder in plain text when global settings is html 

The problem wasn't that I wanted to see it as plain text, but rather the
opposite. If the global setting is show as HTML and the contact setting is
Show messages received from this contact as: HTML then it shows the email as
plain text ;)

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


[kmail2] [Bug 336653] kmail inverts HTML view settings

2014-06-24 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=336653

--- Comment #5 from Laurent Montel mon...@kde.org ---
Interesting indeed.
I will investigate it.

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