[kmail2] [Bug 407663] Share file via email from Dolphin fails if Kmail is not running

2019-06-13 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=407663

Laurent Montel  changed:

   What|Removed |Added

 CC||mon...@kde.org

--- Comment #1 from Laurent Montel  ---
Work fine here

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

[kmail2] [Bug 390900] Import vcf from email does not work

2019-06-13 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=390900

--- Comment #7 from Laurent Montel  ---
(In reply to Helmar Gerloni from comment #6)
> Same problem here on Kmail 4:19.04.2+p18.04+git20190611.0020-0 from KDE Neon
> (and also on Debian Buster).
> 
> I tried the following:
> 
> 1. Send VCF contact from Outlook to Kmail
>Click on "[Add this contact to the address book]" in Kmail does nothing.
> Error shown on console:
>org.kde.pim.kmail: Can't handle URL:
> QUrl("x-kmail:/bodypart/1/2/addToAddressBook%3A0")
> 
> 2. Forward the same mail as attachment from Kmail to Kmail
>Same behavior, similar error message
> 
> 3. Forward the same mail inline from Kmail to Kmail
>No VCF file is attached to the forwarded mail, only a text line "[Name of
> contact]" shows up in the mail
>(Inline-forwarding other mails with attachments preserves the attachments)
> 
> 4. Save the original contact from the Outlook mail to disk and send it as
> attachment from Kmail to Kmail
>Contact can be imported as expected
> 
> So it seems that the problem is not the VCF file itself, but the
> "surrounding" mail.

Do you have a example ?
could you send me it please ?

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

[Akonadi] [Bug 407170] Akonadi won't start for Domain Users

2019-06-13 Thread Christophe Giboudeaux
https://bugs.kde.org/show_bug.cgi?id=407170

--- Comment #2 from Christophe Giboudeaux  ---
After updating, edit the akonadiserverrc file in $HOME/.config/akonadi/ and
delete the lines pointing to the tmp folder. They will be recreated the next
time you start akonadi with the new values.

(for the MySQL backend, the "Options" line, for the PSQL backend, the "Host"
one)

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

[kmail2] [Bug 390900] Import vcf from email does not work

2019-06-13 Thread Helmar Gerloni
https://bugs.kde.org/show_bug.cgi?id=390900

Helmar Gerloni  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1
 CC||hel...@gerloni.net

--- Comment #6 from Helmar Gerloni  ---
Same problem here on Kmail 4:19.04.2+p18.04+git20190611.0020-0 from KDE Neon
(and also on Debian Buster).

I tried the following:

1. Send VCF contact from Outlook to Kmail
   Click on "[Add this contact to the address book]" in Kmail does nothing.
Error shown on console:
   org.kde.pim.kmail: Can't handle URL:
QUrl("x-kmail:/bodypart/1/2/addToAddressBook%3A0")

2. Forward the same mail as attachment from Kmail to Kmail
   Same behavior, similar error message

3. Forward the same mail inline from Kmail to Kmail
   No VCF file is attached to the forwarded mail, only a text line "[Name of
contact]" shows up in the mail
   (Inline-forwarding other mails with attachments preserves the attachments)

4. Save the original contact from the Outlook mail to disk and send it as
attachment from Kmail to Kmail
   Contact can be imported as expected

So it seems that the problem is not the VCF file itself, but the "surrounding"
mail.

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

[akregator] [Bug 256034] Feed content is displayed with date 07.02.2106 07:28

2019-06-13 Thread Heiko Becker
https://bugs.kde.org/show_bug.cgi?id=256034

Heiko Becker  changed:

   What|Removed |Added

 CC||heire...@exherbo.org

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

[Akonadi] [Bug 392092] akonadi_control crash on first start

2019-06-13 Thread tom
https://bugs.kde.org/show_bug.cgi?id=392092

tom  changed:

   What|Removed |Added

 CC||vdx55...@bcaoo.com

--- Comment #22 from tom  ---
Same here with gentoo amd64, akonadi version 5.10.3
I was able to get a konsole output that tells the log file name when I start
kmail for the first time after reboot:

Cannot rename log file '/home/tom/.local/share/akonadi/akonadi_control.error'
to '/home/tom/.local/share/akonadi/akonadi_control.error.old': Cannot create
/home/tom/.local/share/akonadi/akonadi_control.error.old for output 
 KCrash: Application 'akonadi_control' crashing... 
 KCrash: Attempting to start /usr/lib64/libexec/drkonqi from kdeinit 
 sock_file=/var/run/user/1000/kdeinit5__0 
 Nouveau openGL driver detected. Qt WebEngine will disable usage of the GPU. 
 Note: you can set the QT_WEBENGINE_DISABLE_NOUVEAU_WORKAROUND 
 environment variable before running this application, but this is 
 not recommended since this usually causes applications to crash as 
 Nouveau openGL drivers don't support multithreaded rendering 
 QDBusConnection: name 'org.kde.kwalletd5' had owner '' but we thought it was
':1.60'

Created an additional patch to get some more debug information:

--- a/src/shared/akdebug.cpp.a   2019-03-03 23:03:57.0 +0100 
 +++ b/src/shared/akdebug.cpp 2019-06-11 18:57:00.375941258 +0200 
 @@ -200,6 +200,8 @@ void akInit(const QString ) 
  const auto errorLogFile = DebugPrivate::errorLogFileName(name); 
  QFileInfo infoOld(errorLogFile + QLatin1String(".old")); 
  if (infoOld.exists()) { 
 +   qCritical("Old log file '%s' exists.
deleting...",qUtf8Printable(infoOld.fileName())); 
  QFile fileOld(infoOld.absoluteFilePath()); 
 +   qCritical("Old log file (complete) '%s' exists.
deleting...",qUtf8Printable(fileOld.fileName())); 
  const bool success = fileOld.remove(); 
  if (!success) { 
 @@ -207,6 +208,8 @@ void akInit(const QString ) 
  qUtf8Printable(fileOld.fileName()), 
  qUtf8Printable(fileOld.errorString())); 
  } 
 +} else { 
 +   qCritical("Old log file '%s' does not
exist",qUtf8Printable(infoOld.fileName())); 
  } 

  QFileInfo info(errorLogFile); 
 @@ -219,7 +222,11 @@ void akInit(const QString ) 
 qUtf8Printable(file.fileName()), 
 qUtf8Printable(oldName), 
 qUtf8Printable(file.errorString())); 
 +} else { 
 + qCritical("log file '%s' renamed",qUtf8Printable(file.fileName())); 
  } 
 +} else { 
 +   qCritical("no log file to rename."); 
  } 

  QtMessageHandler origHandler = qInstallMessageHandler(akMessageHandler);


which results in this output when akonadi crashes:

Old log file 'akonadi_control.error.old' exists. deleting... 
 Old log file (complete)
'/home/tom/.local/share/akonadi/akonadi_control.error.old' exists. deleting... 
 Cannot rename log file '/home/tom/.local/share/akonadi/akonadi_control.error'
to '/home/tom/.local/share/akonadi/akonadi_control.error.old': Cannot create
/home/tom/.local/share/akonadi/akonadi_control.error.old for output 
 KCrash: Application 'akonadi_control' crashing... 
 KCrash: Attempting to start /usr/lib64/libexec/drkonqi from kdeinit 
 sock_file=/var/run/user/1000/kdeinit5__0 
 Nouveau openGL driver detected. Qt WebEngine will disable usage of the GPU. 
 Note: you can set the QT_WEBENGINE_DISABLE_NOUVEAU_WORKAROUND 
 environment variable before running this application, but this is 
 not recommended since this usually causes applications to crash as 
 Nouveau openGL drivers don't support multithreaded rendering 
 QDBusConnection: name 'org.kde.kwalletd5' had owner '' but we thought it was
':1.53'

the log files are in my home folder and there are no access restrictions for my
user for the folder or the files. I can rename or delete the files manually
without error messages.
It looks to me like the deletion of the .old file is not done even if
fileOld.remove() returns success, or if there is some kind of race condition
(this is all wild guess).

Also reported here:
https://forums.gentoo.org/viewtopic-t-1092660.html

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

[Akonadi] [Bug 407170] Akonadi won't start for Domain Users

2019-06-13 Thread Christophe Giboudeaux
https://bugs.kde.org/show_bug.cgi?id=407170

Christophe Giboudeaux  changed:

   What|Removed |Added

  Latest Commit||https://cgit.kde.org/akonad
   ||i.git/commit/?id=b4bc1a2f58
   ||f6a1765a7349feed6268877d823
   ||d42
   Version Fixed In||19.04.3

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

[Akonadi] [Bug 407170] Akonadi won't start for Domain Users

2019-06-13 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=407170

Daniel Vrátil  changed:

   What|Removed |Added

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

--- Comment #1 from Daniel Vrátil  ---
This should be fixed as a side-effect of https://phabricator.kde.org/D21650
which has moved the MySQL socket file to /var/run/user//akonadi, so the
hostname or username no longer appears in the socket name.

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