ubuntuusers.de

xcrash

Autor:
vuxi
Datum:
19. Oktober 2015 10:00
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
/etc/X11/Xsession.d/98vboxadd-xclient: Zeile 26: notify-send: Befehl nicht gefunden
startkde: Starting up...
kdeinit5: preparing to launch 'libkdeinit5_klauncher'
kdeinit5: Launched KLauncher, pid = 10142, result = 0
Qt: Session management error: networkIdsList argument is NULL
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
kdeinit5: opened connection to :0
kf5.kiconthemes: "Theme tree: (Breeze)"
kdeinit5: preparing to launch 'libkdeinit5_kded5'
kdeinit5: Launched KDED, pid = 10144 result = 0
kdeinit5: preparing to launch 'libkdeinit5_kcminit_startup'
kdeinit5: Launched 'kcminit_startup', pid = 10145 result = 0
Qt: Session management error: networkIdsList argument is NULL
kdeinit5: Got EXT_EXEC '/usr/bin/kbuildsycoca5' from launcher.
kdeinit5: preparing to launch '/usr/bin/kbuildsycoca5'
kf5.kinit.klauncher: "/usr/bin/kbuildsycoca5" (pid 10149) up and running.
kf5.kiconthemes: "Theme tree: (Breeze)"
kbuildsycoca5 running...
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
Recreating ksycoca file ("/home/matthias/.cache/ksycoca5", version 300)
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
kdeinit5: Got SETENV 'KDE_MULTIHEAD=true' from launcher.
Initializing  "kded_touchpad" :  "kcminit_touchpad"
Width:  3622  height:  2826
Approx. resX:  40  resY:  56
Touchpad resolution: x:  55  y:  98
Final resolution x: 55  y: 98
Initializing  "kcm_input" :  "kcminit_mouse"
Initializing  "kcm_access" :  "kcminit_access"
kdeinit5: Got SETENV 'XCURSOR_THEME=breeze_cursors' from launcher.
kdeinit5: Got SETENV 'XCURSOR_SIZE=0' from launcher.
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
kdeinit5: Got EXEC_NEW '/usr/bin/kaccess' from launcher.
kdeinit5: preparing to launch '/usr/bin/kaccess'
kf5.kinit.klauncher: "/usr/bin/kaccess" (pid 10150) up and running.
Initializing  "kcm_style" :  "kcminit_style"
QCoreApplication::arguments: Please instantiate the QApplication object first
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kdeinit5: Got SETENV 'GTK_RC_FILES=/etc/gtk/gtkrc:/home/matthias/.gtkrc:/home/matthias/.config/gtkrc' from launcher.
kdeinit5: Got SETENV 'GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/home/matthias/.gtkrc-2.0:/home/matthias/.config/gtkrc-2.0' from launcher.
QFile::copy: Empty or null file name
Initializing  "kcm_bell" :  "kcminit_bell"
The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file.
The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file.
The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file.
The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file.
The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file.
The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file.
The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file.
kdeinit5: PID 10145 terminated.
kdeinit5: Got KWRAPPER 'ksmserver' from wrapper.
kdeinit5: preparing to launch 'libkdeinit5_ksmserver'
kf5.kiconthemes: "Theme tree: (Breeze)"
kdeinit5: PID 10150 terminated.
Qt: Session management error: networkIdsList argument is NULL
Configuring Lock Action
Saving
Emitting notifyDatabaseChanged ("services", "servicetypes", "xdgdata-mime", "apps")
kdeinit5: PID 10149 terminated.
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
kf5.kded: kded module "kscreen" still uses .desktop files ("kded/kscreen.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "networkwatcher" still uses .desktop files ("kded/networkwatcher.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "khotkeys" still uses .desktop files ("kded/khotkeys.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "kded_baloosearch_kio" still uses .desktop files ("kded/baloosearchfolderupdater.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "proxyscout" has already been found using JSON metadata, please don't install the now unneeded .desktop file ("kded/proxyscout.desktop").
kf5.kded: kded module "networkstatus" still uses .desktop files ("kded/networkstatus.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "freespacenotifier" still uses .desktop files ("kded/freespacenotifier.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "printmanager" still uses .desktop files ("kded/printmanager.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "ktouchpadenabler" still uses .desktop files ("kded/ktouchpadenabler.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "recentdocumentsnotifier" still uses .desktop files ("kded/recentdocumentsnotifier.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "appmenu" still uses .desktop files ("kded/appmenu.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "powerdevil" still uses .desktop files ("kded/powerdevil.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "desktopnotifier" still uses .desktop files ("kded/desktopnotifier.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "ktimezoned" still uses .desktop files ("kded/ktimezoned.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "soliduiserver" still uses .desktop files ("kded/soliduiserver.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "statusnotifierwatcher" still uses .desktop files ("kded/statusnotifierwatcher.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "ksysguard" still uses .desktop files ("kded/ksysguard.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "touchpad" still uses .desktop files ("kded/touchpad.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "keyboard" still uses .desktop files ("kded/keyboard.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "notificationhelper" still uses .desktop files ("kded/notificationhelper.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "networkmanagement" still uses .desktop files ("kded/networkmanagement.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "solidautoeject" still uses .desktop files ("kded/solidautoeject.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "remotedirnotify" still uses .desktop files ("kded/remotedirnotify.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "platformstatus" still uses .desktop files ("kded/platformstatus.desktop"). Please port it to JSON metadata.
kf5.kded: found kded module "kscreen" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kded: Successfully loaded module "kscreen"
kf5.kded: Successfully loaded module "kded_baloosearch_kio"
kf5.kded: found kded module "printmanager" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kded: Successfully loaded module "printmanager"
kf5.kded: found kded module "ktouchpadenabler" by prepending 'kded_' to the library path, please fix your metadata.
XSync seems available and ready
XSync Inited
Supported, init completed
kf5.kded: Successfully loaded module "ktouchpadenabler"
kf5.kded: found kded module "powerdevil" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kded: Successfully loaded module "powerdevil"
kf5.kded: found kded module "statusnotifierwatcher" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kded: Successfully loaded module "statusnotifierwatcher"
kf5.kded: found kded module "ksysguard" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kded: Successfully loaded module "ksysguard"
kf5.kded: found kded module "networkmanagement" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kded: Successfully loaded module "networkmanagement"
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/libexec/kf5/kconf_update' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/libexec/kf5/kconf_update'
kf5.kinit.klauncher: "/usr/lib/x86_64-linux-gnu/libexec/kf5/kconf_update" (pid 10165) up and running.
kdeinit5: PID 10165 terminated.
kf5.kiconthemes: "Theme tree: (Breeze)"
QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.12'
pm.kded: unable to register service to dbus
powerdevil: Loading UPower backend...
powerdevil: Success!
powerdevil: Backend loaded, loading core
powerdevil: Core loaded, initializing backend
powerdevil: Using XRandR
powerdevil: Screen brightness value:  11
powerdevil: current screen brightness value:  11
powerdevil: Backend is ready, KDE Power Management system initialized
powerdevil: A new battery was detected
XSync seems available and ready
XSync Inited
Supported, init completed
powerdevil: Session path: "/org/freedesktop/login1/session/_310"
powerdevil: ACTIVE SESSION PATH: "/org/freedesktop/login1/session/_310"
powerdevil: Current session is now active
powerdevil: fd passing available: true
powerdevil: systemd powersave events handling inhibited, descriptor: 19
powerdevil: systemd support initialized
powerdevil: The session is not registered with ck
powerdevil: Got a valid offer for  "DPMSControl"
powerdevil: Core is ready, registering various services on the bus...
powerdevil: Can't contact ck
powerdevil: We are now into activity  "default"
powerdevil: () ()
powerdevil: () ()
powerdevil: Loading profile for plugged AC
powerdevil: Activity is not forcing a profile
powerdevil: Profiles:  "AC" ""
powerdevil: set screen brightness percentage:  100
powerdevil: Screen brightness value max:  11
powerdevil: set screen brightness value:  11
powerdevil: 
powerdevil: Loading timeouts with  300000
Created alarm 25165825
Created alarm 25165831
Created alarm 25165832
Created alarm 25165833
Created alarm 25165834
detected kglobalaccel restarting, re-registering all shortcut keys
powerdevil: Screen brightness value:  11
powerdevil: Brightness changed!!
Created alarm 35651585
ksmserver: "/run/user/1000/KSMserver"
ksmserver: KSMServer: SetAProc_loc: conn  0 , prot= local , file= @/tmp/.ICE-unix/10160
ksmserver: KSMServer: SetAProc_loc: conn  1 , prot= unix , file= /tmp/.ICE-unix/10160
kdeinit5: Got SETENV 'SESSION_MANAGER=local/LIFEBOOK-AH531:@/tmp/.ICE-unix/10160,unix/LIFEBOOK-AH531:/tmp/.ICE-unix/10160' from launcher.
ksmserver: KSMServer::restoreSession  "saved at previous logout"
kf5.kinit.klauncher: Service:  0 "/etc/xdg/autostart/baloo_file.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/baloo_file' from launcher.
kdeinit5: preparing to launch '/usr/bin/baloo_file'
kf5.kinit.klauncher: "/usr/bin/baloo_file" (pid 10177) up and running.
kf5.kinit.klauncher: Service:  0 "/etc/xdg/autostart/kdeconnectd.desktop"
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/libexec/kdeconnectd' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/libexec/kdeconnectd'
kf5.kiconthemes: "Theme tree: (Breeze)"
QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.12'
detected kglobalaccel restarting, re-registering all shortcut keys
kf5.kinit.klauncher: "/usr/lib/x86_64-linux-gnu/libexec/kdeconnectd" (pid 10178) up and running.
kf5.kinit.klauncher: Service:  0 "/etc/xdg/autostart/krunner.desktop"
Session path: "/org/freedesktop/login1/session/_310"
kdeinit5: Got EXEC_NEW '/usr/bin/krunner' from launcher.
kdeinit5: preparing to launch '/usr/bin/krunner'
kf5.kinit.klauncher: "/usr/bin/krunner" (pid 10179) up and running.
kf5.kinit.klauncher: appId= ":1.13" newAppId= ":1.13" pendingAppId= "org.kde.krunner"
kf5.kinit.klauncher: appId= ":1.14" newAppId= ":1.14" pendingAppId= "org.kde.krunner"
kf5.kinit.klauncher: Service:  0 "/etc/xdg/autostart/plasmashell.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/plasmashell' from launcher.
kdeinit5: preparing to launch '/usr/bin/plasmashell'
kf5.kinit.klauncher: "/usr/bin/plasmashell" (pid 10184) up and running.
Baloo File Indexing has been disabled
kdeinit5: PID 10177 terminated.
kf5.kinit.klauncher: appId= "org.kde.kwin" newAppId= "org.kde.kwin" pendingAppId= "org.kde.plasmashell"
kf5.kinit.klauncher: appId= ":1.15" newAppId= ":1.15" pendingAppId= "org.kde.plasmashell"
kdeconnect.core: KdeConnect daemon starting
kf5.kinit.klauncher: appId= "org.kde.kdeconnectd" newAppId= "org.kde.kdeconnectd" pendingAppId= "org.kde.plasmashell"
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
kf5.kiconthemes: "Theme tree: (Breeze)"
completeShutdownOrCheckpoint called
completeShutdownOrCheckpoint called
kdeconnect.core: KdeConnect daemon started
kf5.kinit.klauncher: appId= "org.kde.kdeconnect" newAppId= "org.kde.kdeconnect" pendingAppId= "org.kde.plasmashell"
kf5.kiconthemes: "Theme tree: (Breeze)"
completeShutdownOrCheckpoint called
kwin_core: Extensions: shape: 0x "11"  composite: 0x "4"  render: 0x "b"  fixes: 0x "50"  randr: 0x "14"  sync: 0x "31"  damage: 0x  "11" 

kf5.kinit.klauncher: appId= ":1.16" newAppId= ":1.16" pendingAppId= "org.kde.plasmashell"
kf5.kinit.klauncher: appId= "org.kde.KScreen.Backend.XRandR" newAppId= "org.kde.KScreen.Backend.XRandR" pendingAppId= "org.kde.plasmashell"
kscreen: launcherDataAvailable: "org.kde.KScreen.Backend.XRandR"
kf5.kiconthemes: "Theme tree: (Breeze)"
Constructing a KPluginInfo object from old style JSON. Please use kcoreaddons_desktop_to_json() for "/usr/lib/x86_64-linux-gnu/qt5/plugins/org.kde.kdecoration2/breezedecoration.so" instead of kservice_desktop_to_json() in your CMake code.
Constructing a KPluginInfo object from old style JSON. Please use kcoreaddons_desktop_to_json() for "/usr/lib/x86_64-linux-gnu/qt5/plugins/org.kde.kdecoration2/kwin5_aurorae.so" instead of kservice_desktop_to_json() in your CMake code.
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
Trying to load decoration plugin:  "/usr/lib/x86_64-linux-gnu/qt5/plugins/org.kde.kdecoration2/breezedecoration.so"
kf5.kinit.klauncher: appId= "org.kde.KWin" newAppId= "org.kde.KWin" pendingAppId= "org.kde.plasmashell"
kf5.kinit.klauncher: appId= ":1.17" newAppId= ":1.17" pendingAppId= "org.kde.plasmashell"
kf5.kiconthemes: "Theme tree: (Breeze)"
kf5.kinit.klauncher: Service:  0 "/etc/xdg/autostart/polkit-kde-authentication-agent-1.desktop"
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1'
kf5.kinit.klauncher: "/usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1" (pid 10192) up and running.
kscreen.kded: Config KScreen::Config(0x1089220) is ready
kscreen.kded: Applying config
kscreen.kded: Calculating config ID for KScreen::Config(0x1089220)
kscreen.kded: 	Part of the Id:  "76964d76fb33b2808d11f96ef89d575e"
kscreen.kded: 	Part of the Id:  "77c71c42fc0980f91b64a809600abafe"
kscreen.kded: 	Config ID: "1ed18fa35d3858942147036d7a97e9c8"
kscreen.kded: Calculating config ID for KScreen::Config(0x1089220)
kscreen.kded: 	Part of the Id:  "76964d76fb33b2808d11f96ef89d575e"
kscreen.kded: 	Part of the Id:  "77c71c42fc0980f91b64a809600abafe"
kscreen.kded: 	Config ID: "1ed18fa35d3858942147036d7a97e9c8"
kscreen.kded: Applying known config "1ed18fa35d3858942147036d7a97e9c8"
kscreen.kded: Finding a mode for QSize(0, 0) @ 0
kscreen.kded: 	Failed to find a matching mode - this means that our config is corruptedor a different device with the same serial number has been connected (very unlikely).Falling back to preferred modes.
kscreen.kded: Finding a mode for QSize(0, 0) @ 0
kscreen.kded: 	Failed to find a matching mode - this means that our config is corruptedor a different device with the same serial number has been connected (very unlikely).Falling back to preferred modes.
kscreen.kded: doApplyConfig()
Calling KPluginInfo::property("X-KDE-PluginInfo-Name") is deprecated, use KPluginInfo::pluginName() in "/usr/lib/x86_64-linux-gnu/qt5/plugins/plasma/packagestructure/plasma_packagestructure_wallpaperimages.so" instead.
Calling KPluginInfo::property("X-KDE-PluginInfo-Name") is deprecated, use KPluginInfo::pluginName() in "/usr/lib/x86_64-linux-gnu/qt5/plugins/plasma/packagestructure/plasma_packagestructure_lookandfeel.so" instead.
Calling KPluginInfo::property("X-KDE-PluginInfo-Name") is deprecated, use KPluginInfo::pluginName() in "/usr/lib/x86_64-linux-gnu/qt5/plugins/plasma/packagestructure/plasma_packagestructure_wallpaper.so" instead.
Calling KPluginInfo::property("X-KDE-PluginInfo-Name") is deprecated, use KPluginInfo::pluginName() in "/usr/lib/x86_64-linux-gnu/qt5/plugins/plasma/packagestructure/plasma_packagestructure_share.so" instead.
Calling KPluginInfo::property("X-KDE-PluginInfo-Name") is deprecated, use KPluginInfo::pluginName() in "/usr/lib/x86_64-linux-gnu/qt5/plugins/plasma/packagestructure/plasma_packagestructure_layoutemplate.so" instead.
Calling KPluginInfo::property("X-KDE-PluginInfo-Name") is deprecated, use KPluginInfo::pluginName() in "/usr/lib/x86_64-linux-gnu/qt5/plugins/plasma/packagestructure/plasma_packagestructure_plasmashell.so" instead.
Trying to use rootObject before initialization is completed, whilst using setInitializationDelayed. Forcing completion
kscreen.kded: Config applied
kscreen.kded: Monitor for changes:  true
kf5.kinit.klauncher: appId= ":1.18" newAppId= ":1.18" pendingAppId= "*.polkit-kde-authentication-agent-1"
kf5.kinit.klauncher: appName= "18"
kf5.kinit.klauncher: appId= ":1.19" newAppId= ":1.19" pendingAppId= "*.polkit-kde-authentication-agent-1"
kf5.kinit.klauncher: appName= "19"
kf5.kiconthemes: "Theme tree: (Breeze)"
completeShutdownOrCheckpoint called
completeShutdownOrCheckpoint called
Application::crashHandler() called with signal 11; recent crashes: 1
kf5.kinit.klauncher: appId= ":1.20" newAppId= ":1.20" pendingAppId= "*.polkit-kde-authentication-agent-1"
kf5.kinit.klauncher: appName= "20"
New PolkitAgentListener  0x9add20
Adding new listener  PolkitQt1::Agent::Listener(0x9e5810) for  0x9add20
Listener online
true
Invalid service name "/org/kde/polkit-kde-authentication-agent-1" using: "/org/kde/polkitkdeauthenticationagent1"
kf5.kinit.klauncher: Service:  0 ""
ksmserver: Autostart 0 done
kcminit not running? If we are running with mobile profile or in another platform other than X11 this is normal.
ksmserver: Kcminit phase 1 done
kf5.kinit.klauncher: Service:  1 "/etc/xdg/autostart/kwrited-autostart.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/kwrited' from launcher.
kdeinit5: preparing to launch '/usr/bin/kwrited'
kf5.kinit.klauncher: "/usr/bin/kwrited" (pid 10210) up and running.
kf5.kinit.klauncher: Service:  1 "/etc/xdg/autostart/pulseaudio.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/start-pulseaudio-x11' from launcher.
kdeinit5: preparing to launch '/usr/bin/start-pulseaudio-x11'
kf5.kinit.klauncher: "/usr/bin/start-pulseaudio-x11" (pid 10211) up and running.
kf5.kinit.klauncher: Service:  1 "/etc/xdg/autostart/restore_kmix_volumes.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/kmixctrl' from launcher.
kdeinit5: preparing to launch '/usr/bin/kmixctrl'
kf5.kinit.klauncher: "/usr/bin/kmixctrl" (pid 10213) up and running.
kf5.kinit.klauncher: Service:  1 ""
ksmserver: Autostart 1 done
kf5.kiconthemes: "Theme tree: (Breeze)"
Fehlgeschlagen: Modulinitialisierung fehlgeschlagen
kdeinit5: PID 10211 terminated.
kscreen: Requesting missing EDID for outputs (66, 68)
kscreen.kded: Change detected
kdeinit5: PID 10210 terminated.
kscreen.kded: Saving current config to file
kscreen.kded: Calculating config ID for KScreen::Config(0x1089220)
kscreen.kded: 	Part of the Id:  "76964d76fb33b2808d11f96ef89d575e"
kscreen.kded: 	Part of the Id:  "77c71c42fc0980f91b64a809600abafe"
kscreen.kded: 	Config ID: "1ed18fa35d3858942147036d7a97e9c8"
kscreen.kded: Config saved on:  "/home/matthias/.local/share/kscreen/1ed18fa35d3858942147036d7a97e9c8"
KCrash: Attempting to start /usr/bin/krunner from kdeinit
kdeinit5: Got EXEC_NEW '/usr/bin/krunner' from wrapper.
kdeinit5: preparing to launch '/usr/bin/krunner'
kdeinit5: Got EXEC_NEW '/usr/bin/kglobalaccel5' from wrapper.
kdeinit5: preparing to launch '/usr/bin/kglobalaccel5'
KCrash: crashing... crashRecursionCounter = 2
KCrash: Application Name = krunner path = /usr/bin pid = 10179
KCrash: Arguments: /usr/bin/krunner 
KCrash: crashing... crashRecursionCounter = 2
KCrash: Application Name = plasmashell path = /usr/bin pid = 10184
KCrash: Arguments: /usr/bin/plasmashell --shut-up 
kdeinit5: PID 10179 terminated.
kdeinit5: PID 10184 terminated.
kdeinit5: PID 10222 terminated.
kdeinit5: PID 10220 terminated.
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/libexec/kdeconnectd' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/libexec/kdeconnectd'
completeShutdownOrCheckpoint called
KGlobal::locale(): Warning your global KLocale is being recreated with a valid main component instead of a fake component, this usually means you tried to call i18n related functions before your main component was created. You should not do that since it most likely will not work
kf5.kinit.klauncher: "/usr/lib/x86_64-linux-gnu/libexec/kdeconnectd" (pid 10259) up and running.
kdeinit5: PID 10213 terminated.
kf5.kiconthemes: "Theme tree: (Breeze)"
completeShutdownOrCheckpoint called
kdeinit5: PID 10259 terminated.
kdeinit5: Got EXEC_NEW '/usr/bin/kactivitymanagerd' from launcher.
kdeinit5: preparing to launch '/usr/bin/kactivitymanagerd'
kf5.kinit.klauncher: "/usr/bin/kactivitymanagerd" (pid 10316) up and running.
kdeinit5: PID 10316 terminated.
kdeinit5: Got EXEC_NEW '/usr/bin/gwenview' from launcher.
kdeinit5: preparing to launch '/usr/bin/gwenview'
kf5.kinit.klauncher: "/usr/bin/gwenview" (pid 10382) up and running.
kdeinit5: PID 10382 terminated.
kdeinit5: Got EXEC_NEW '/usr/bin/skype' from launcher.
kdeinit5: preparing to launch '/usr/bin/skype'
kf5.kinit.klauncher: "/usr/bin/skype" (pid 10447) up and running.
/usr/bin/skype: unrecognized option '-session'
kdeinit5: Got EXEC_NEW '/usr/bin/kde4' from launcher.
kdeinit5: preparing to launch '/usr/bin/kde4'
kf5.kinit.klauncher: "/usr/bin/kde4" (pid 10448) up and running.
kdeinit5: PID 10447 terminated.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kdeinit5: Got EXEC_NEW '/usr/bin/kde4' from launcher.
kdeinit5: preparing to launch '/usr/bin/kde4'
kf5.kinit.klauncher: "/usr/bin/kde4" (pid 10452) up and running.
completeShutdownOrCheckpoint called
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
KGlobal::locale(): Warning your global KLocale is being recreated with a valid main component instead of a fake component, this usually means you tried to call i18n related functions before your main component was created. You should not do that since it most likely will not work
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
kdeinit5: Got EXEC_NEW '/usr/bin/kde4' from launcher.
kdeinit5: preparing to launch '/usr/bin/kde4'
kf5.kinit.klauncher: "/usr/bin/kde4" (pid 10462) up and running.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
completeShutdownOrCheckpoint called
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kdeinit5: Got EXEC_NEW '/usr/bin/kde4' from launcher.
kdeinit5: preparing to launch '/usr/bin/kde4'
kf5.kinit.klauncher: "/usr/bin/kde4" (pid 10466) up and running.
QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: Datei oder Verzeichnis nicht gefunden
QFileSystemWatcher: failed to add paths: /home/matthias/.config/ibus/bus
Bus::open: Can not get ibus-daemon's address. 
IBusInputContext::createInputContext: no connection to ibus-daemon 
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
detected kglobalaccel restarting, re-registering all shortcut keys
detected kglobalaccel restarting, re-registering all shortcut keys
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kbuildsycoca4 running...
kbuildsycoca4(10478) VFolderMenu::loadDoc: Parse error in  "/home/matthias/.config/menus/applications-merged/xdg-desktop-menu-dummy.menu" , line  1 , col  1 :  "unexpected end of file" 
kbuildsycoca4(10478) parseLayoutNode: The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file. 
kbuildsycoca4(10478) parseLayoutNode: The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file. 
kbuildsycoca4(10478) parseLayoutNode: The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file. 
kbuildsycoca4(10478) parseLayoutNode: The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file. 
kbuildsycoca4(10478) parseLayoutNode: The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file. 
kbuildsycoca4(10478) parseLayoutNode: The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file. 
kbuildsycoca4(10478) parseLayoutNode: The menu spec file contains a Layout or DefaultLayout tag without the mandatory Merge tag inside. Please fix your file. 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
kbuildsycoca4(10478) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
kdeinit5: Got EXEC_NEW '/usr/bin/kde4' from launcher.
kdeinit5: preparing to launch '/usr/bin/kde4'
kf5.kinit.klauncher: "/usr/bin/kde4" (pid 10482) up and running.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
Registering "org.kde.StatusNotifierItem-10456-1/StatusNotifierItem" to system tray
kwin_core: screens:  2 desktops:  2
kwin_core: Done.
kwin_core: screens:  2 desktops:  2
kwin_core: Done.
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
kdeinit5: Got EXEC_NEW '/usr/bin/akonadi_agent_launcher' from launcher.
kdeinit5: preparing to launch '/usr/bin/akonadi_agent_launcher'
kf5.kinit.klauncher: "/usr/bin/akonadi_agent_launcher" (pid 10486) up and running.
QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.74'
kdeinit5: PID 10452 terminated.
Application::crashHandler() called with signal 11; recent crashes: 1
completeShutdownOrCheckpoint called
kdeinit5: Got EXEC_NEW '/usr/bin/akonadi_agent_launcher' from launcher.
kdeinit5: preparing to launch '/usr/bin/akonadi_agent_launcher'
Invalid usage: expected: ./agent_launcher pluginName agentIdentifier 
kdeinit5: PID 10486 terminated.
kf5.kinit.klauncher: "/usr/bin/akonadi_agent_launcher" (pid 10496) up and running.
Invalid usage: expected: ./agent_launcher pluginName agentIdentifier 
kdeinit5: Got EXEC_NEW '/usr/bin/akonadi_agent_launcher' from launcher.
kdeinit5: preparing to launch '/usr/bin/akonadi_agent_launcher'
powerdevil: ACTIVE SESSION PATH CHANGED: "/org/freedesktop/login1/session/c4"
powerdevil: Current session is now inactive
kdeinit5: PID 10496 terminated.
kf5.kinit.klauncher: "/usr/bin/akonadi_agent_launcher" (pid 10556) up and running.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
Invalid usage: expected: ./agent_launcher pluginName agentIdentifier 
kdeinit5: Got EXEC_NEW '/usr/bin/akonadi_agent_launcher' from launcher.
kdeinit5: preparing to launch '/usr/bin/akonadi_agent_launcher'
kdeinit5: PID 10556 terminated.
kf5.kinit.klauncher: "/usr/bin/akonadi_agent_launcher" (pid 10562) up and running.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kdeinit5: Got EXEC_NEW '/home/matthias/.dropbox-dist/dropbox-lnx.x86_64-3.10.8/dropbox' from launcher.
kdeinit5: preparing to launch '/home/matthias/.dropbox-dist/dropbox-lnx.x86_64-3.10.8/dropbox'
Invalid usage: expected: ./agent_launcher pluginName agentIdentifier 
kf5.kinit.klauncher: "/home/matthias/.dropbox-dist/dropbox-lnx.x86_64-3.10.8/dropbox" (pid 10563) up and running.
kdeinit5: PID 10562 terminated.
Registering "org.kde.StatusNotifierItem-10483-1/StatusNotifierItem" to system tray
kdeinit5: PID 10448 terminated.
QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.74'
powerdevil: DBus service  ":1.79"  is requesting inhibition
powerdevil: Added inhibition with cookie  1  from  "ktorrent"  with  "Ein oder mehrere Torrents laufen derzeit in KTorrent"
powerdevil: Added interrupt session
kdeinit5: PID 10482 terminated.
yakuake(10449)/konsole Konsole::Session::run: Attempted to re-run an already running session. 
powerdevil: Released inhibition with cookie  1
KCrash: crashing... crashRecursionCounter = 2
KCrash: Application Name = kwin_x11 path = /usr/bin pid = 10175
KCrash: Arguments: /usr/bin/kwin_x11 -session 10ee10addc5000144024877500000087320000_1445205668_643935 
kontact(10465)/libakonadi Akonadi::AgentManagerPrivate::createDBusInterface: AgentManager failed to get a valid AgentManager DBus interface. Error is: 1 "org.freedesktop.DBus.Error.NameHasNoOwner" "Could not get owner of name 'org.freedesktop.Akonadi.Control': no such name" 
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Hspell: can't open /usr/share/hspell/hebrew.wgz.sizes.
search paths:  ("/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin", "/usr/games", "/usr/local/games", "/usr/sbin", "/usr/local/sbin", "/usr/local/libexec", "/usr/libexec", "/opt/mysql/libexec", "/opt/local/lib/mysql5/bin", "/opt/mysql/sbin") 
Found mysql_install_db:  "/usr/bin/mysql_install_db" 
Found mysqlcheck:  "/usr/bin/mysqlcheck" 
akonadi.collectionattributetable                   OK
akonadi.collectionmimetyperelation                 OK
akonadi.collectionpimitemrelation                  OK
akonadi.collectiontable                            OK
akonadi.flagtable                                  OK
akonadi.mimetypetable                              OK
akonadi.parttable                                  OK
akonadi.parttypetable                              OK
akonadi.pimitemflagrelation                        OK
akonadi.pimitemtable                               OK
akonadi.pimitemtagrelation                         OK
akonadi.resourcetable                              OK
akonadi.schemaversiontable                         OK
akonadi.tagattributetable                          OK
akonadi.tagremoteidresourcerelationtable           OK
akonadi.tagtable                                   OK
akonadi.tagtypetable                               OK
mysql.columns_priv                                 OK
mysql.db                                           OK
mysql.event                                        OK
mysql.func                                         OK
mysql.general_log                                  OK
mysql.help_category                                OK
mysql.help_keyword                                 OK
mysql.help_relation                                OK
mysql.help_topic                                   OK
mysql.innodb_index_stats                           OK
mysql.innodb_table_stats                           OK
mysql.ndb_binlog_index                             OK
mysql.plugin                                       OK
mysql.proc                                         OK
mysql.procs_priv                                   OK
mysql.proxies_priv                                 OK
mysql.servers                                      OK
mysql.slave_master_info                            OK
mysql.slave_relay_log_info                         OK
mysql.slave_worker_info                            OK
mysql.slow_log                                     OK
mysql.tables_priv                                  OK
mysql.time_zone                                    OK
mysql.time_zone_leap_second                        OK
mysql.time_zone_name                               OK
mysql.time_zone_transition                         OK
mysql.time_zone_transition_type                    OK
mysql.user                                         OK
MySQL version OK (required "5.1" , available "5.6" ) 
Database "akonadi" opened using driver "QMYSQL" 
DbInitializer::run() 
checking table  "SchemaVersionTable" 
checking table  "ResourceTable" 
checking table  "CollectionTable" 
checking table  "MimeTypeTable" 
checking table  "PimItemTable" 
checking table  "FlagTable" 
checking table  "PartTypeTable" 
checking table  "PartTable" 
checking table  "CollectionAttributeTable" 
checking table  "TagTypeTable" 
checking table  "TagTable" 
checking table  "TagAttributeTable" 
checking table  "TagRemoteIdResourceRelationTable" 
checking table  "PimItemFlagRelation" 
checking table  "PimItemTagRelation" 
checking table  "CollectionMimeTypeRelation" 
checking table  "CollectionPimItemRelation" 
DbInitializer::run() done 
skipping update 2 
skipping update 3 
skipping update 4 
skipping update 8 
skipping update 10 
skipping update 12 
skipping update 13 
skipping update 14 
skipping update 15 
skipping update 16 
skipping update 17 
skipping update 18 
skipping update 19 
skipping update 20 
skipping update 21 
skipping update 22 
skipping update 23 
skipping update 24 
skipping update 25 
skipping update 26 
skipping update 28 
Indexes successfully created 
DataStore::unhideAllPimItems() 
Search loop is waiting, will wake again in -1 ms 
Database "akonadi" opened using driver "QMYSQL" 
PLUGINS:  "/usr/share/akonadi/agents" 
PLUGINS:  ("akonadibalooindexingagent.desktop", "akonadinepomukfeederagent.desktop", "akonotesresource.desktop", "archivemailagent.desktop", "birthdaysresource.desktop", "contactsresource.desktop", "davgroupwareresource.desktop", "facebookresource.desktop", "folderarchiveagent.desktop", "followupreminder.desktop", "googlecalendarresource.desktop", "googlecontactsresource.desktop", "icaldirresource.desktop", "icalresource.desktop", "imapresource.desktop", "invitationsagent.desktop", "kabcresource.desktop", "kalarmdirresource.desktop", "kalarmresource.desktop", "kcalresource.desktop", "kdeaccountsresource.desktop", "kolabproxyresource.desktop", "kolabresource.desktop", "localbookmarksresource.desktop", "maildirresource.desktop", "maildispatcheragent.desktop", "mailfilteragent.desktop", "mboxresource.desktop", "migrationagent.desktop", "mixedmaildirresource.desktop", "mtdummyresource.desktop", "newmailnotifieragent.desktop", "nntpresource.desktop", "notesagent.desktop", "notesresource.desktop", "openxchangeresource.desktop", "pop3resource.desktop", "sendlateragent.desktop", "vcarddirresource.desktop", "vcardresource.desktop") 
search paths:  ("/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin", "/usr/games", "/usr/local/games") 
search paths:  ("/usr/lib/x86_64-linux-gnu/qt5/plugins", "/lib/kde5/plugins/", "/usr/lib/x86_64-linux-gnu/qt4/plugins", "/usr/bin", "/home/matthias/.kde/lib/kde4/", "/usr/lib/kde4/") 
PLUGINS inserting:  "akonadi_baloo_indexer" 0 ("Unique", "Autostart") 
SEARCH MANAGER: searching in  "/usr/lib/x86_64-linux-gnu/qt5/plugins/akonadi" : () 
SEARCH MANAGER: searching in  "/lib/kde5/plugins//akonadi" : () 
SEARCH MANAGER: searching in  "/usr/lib/x86_64-linux-gnu/qt4/plugins/akonadi" : () 
SEARCH MANAGER: searching in  "/usr/bin/akonadi" : () 
SEARCH MANAGER: searching in  "/home/matthias/.kde/lib/kde4//akonadi" : () 
SEARCH MANAGER: searching in  "/usr/lib/kde4//akonadi" : ("akonadibaloosearchplugin.desktop") 
Executable "akonadi_nepomuk_feeder" for agent "akonadi_nepomuk_feeder" could not be found!
PLUGINS inserting:  "akonadi_akonotes_resource" 2 ("Resource", "Notes") 
PLUGINS inserting:  "akonadi_archivemail_agent" 0 ("Unique", "Autostart") 
PLUGINS inserting:  "akonadi_birthdays_resource" 0 ("Resource", "Unique") 
PLUGINS inserting:  "akonadi_contacts_resource" 2 ("Resource") 
PLUGINS inserting:  "akonadi_davgroupware_resource" 0 ("Resource", "FreeBusyProvider") 
PLUGINS inserting:  "akonadi_facebook_resource" 0 ("Resource") 
Executable "akonadi_folderarchive_agent" for agent "akonadi_folderarchive_agent" could not be found!
PLUGINS inserting:  "akonadi_followupreminder_agent" 0 ("Unique", "Autostart") 
PLUGINS inserting:  "akonadi_googlecalendar_resource" 1 ("Resource") 
PLUGINS inserting:  "akonadi_googlecontacts_resource" 2 ("Resource") 
PLUGINS inserting:  "akonadi_icaldir_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_ical_resource" 2 ("Resource") 
PLUGINS inserting:  "akonadi_imap_resource" 1 ("Resource") 
SearchManager: loaded search plugin "akonadi_baloo_searchplugin" 
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Database "akonadi" opened using driver "QMYSQL" 
PLUGINS inserting:  "akonadi_invitations_agent" 0 ("NoConfig") 
PLUGINS inserting:  "akonadi_kabc_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_kalarm_dir_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_kalarm_resource" 0 ("Resource") 
Database "akonadi" opened using driver "QMYSQL" 
PLUGINS inserting:  "akonadi_kcal_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_kdeaccounts_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_kolabproxy_resource" 0 ("Resource", "Unique") 
PLUGINS inserting:  "akonadi_kolab_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_localbookmarks_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_maildir_resource" 1 ("Resource") 
Database "akonadi" opened using driver "QMYSQL" 
PLUGINS inserting:  "akonadi_maildispatcher_agent" 0 ("Unique", "Autostart") 
PLUGINS inserting:  "akonadi_mailfilter_agent" 0 ("Unique", "Autostart", "NoConfig") 
PLUGINS inserting:  "akonadi_mbox_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_migration_agent" 0 ("Unique", "Autostart") 
PLUGINS inserting:  "akonadi_mixedmaildir_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_mailtransport_dummy_resource" 0 ("Resource", "MailTransport") 
PLUGINS inserting:  "akonadi_newmailnotifier_agent" 0 ("Unique", "Autostart") 
PLUGINS inserting:  "akonadi_nntp_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_notes_agent" 0 ("Unique", "Autostart") 
PLUGINS inserting:  "akonadi_notes_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_openxchange_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_pop3_resource" 0 ("Resource", "NeedsNetwork") 
PLUGINS inserting:  "akonadi_sendlater_agent" 0 ("Unique", "Autostart") 
PLUGINS inserting:  "akonadi_vcarddir_resource" 0 ("Resource") 
PLUGINS inserting:  "akonadi_vcard_resource" 0 ("Resource") 
search paths:  ("/usr/lib/x86_64-linux-gnu/qt5/plugins", "/lib/kde5/plugins/", "/usr/lib/kde4/plugins", "/usr/lib/x86_64-linux-gnu/qt4/plugins", "/usr/bin", "/home/matthias/.kde/lib/kde4/", "/usr/lib/kde4/") 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
amarok(10472) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
Database "akonadi" opened using driver "QMYSQL" 
search paths:  ("/usr/lib/x86_64-linux-gnu/qt5/plugins", "/lib/kde5/plugins/", "/usr/lib/kde4/plugins", "/usr/lib/x86_64-linux-gnu/qt4/plugins", "/usr/bin", "/home/matthias/.kde/lib/kde4/", "/usr/lib/kde4/") 
AkonadiAgentServer(10620)/libakonadi Akonadi::AgentManagerPrivate::createDBusInterface: AgentManager failed to get a valid AgentManager DBus interface. Error is: 1 "org.freedesktop.DBus.Error.NameHasNoOwner" "Could not get owner of name 'org.freedesktop.Akonadi.Control': no such name" 
Agent instance created in separate process. 
completeShutdownOrCheckpoint called
AkonadiAgentServer(10620) MaildirResource::attemptConfigRestoring: the resource is not properly configured: 
AkonadiAgentServer(10620) MaildirResource::attemptConfigRestoring: there is no config file for the resource. 
AkonadiAgentServer(10620) MaildirResource::attemptConfigRestoring: we create a new one. 
Database "akonadi" opened using driver "QMYSQL" 
Akonadi server is now operational. 
AkonadiAgentServer(10621)/libakonadi Akonadi::AgentManagerPrivate::createDBusInterface: AgentManager failed to get a valid AgentManager DBus interface. Error is: 1 "org.freedesktop.DBus.Error.NameHasNoOwner" "Could not get owner of name 'org.freedesktop.Akonadi.Control': no such name" 
Agent instance created in separate process. 
search paths:  ("/usr/lib/x86_64-linux-gnu/qt5/plugins", "/lib/kde5/plugins/", "/usr/lib/kde4/plugins", "/usr/lib/x86_64-linux-gnu/qt4/plugins", "/usr/bin", "/home/matthias/.kde/lib/kde4/", "/usr/lib/kde4/") 
completeShutdownOrCheckpoint called
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10621_4oTQ5T" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10621_4oTQ5T" true false 
Database "akonadi" opened using driver "QMYSQL" 
search paths:  ("/usr/lib/x86_64-linux-gnu/qt5/plugins", "/lib/kde5/plugins/", "/usr/lib/kde4/plugins", "/usr/lib/x86_64-linux-gnu/qt4/plugins", "/usr/bin", "/home/matthias/.kde/lib/kde4/", "/usr/lib/kde4/") 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10626_ex7QE6" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10626_ex7QE6" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10627_GxYLcf" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10627_GxYLcf" true false 
Database "akonadi" opened using driver "QMYSQL" 
search paths:  ("/usr/lib/x86_64-linux-gnu/qt5/plugins", "/lib/kde5/plugins/", "/usr/lib/kde4/plugins", "/usr/lib/x86_64-linux-gnu/qt4/plugins", "/usr/bin", "/home/matthias/.kde/lib/kde4/", "/usr/lib/kde4/") 
search paths:  ("/usr/lib/x86_64-linux-gnu/qt5/plugins", "/lib/kde5/plugins/", "/usr/lib/kde4/plugins", "/usr/lib/x86_64-linux-gnu/qt4/plugins", "/usr/bin", "/home/matthias/.kde/lib/kde4/", "/usr/lib/kde4/") 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10636_IWnQxi" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10636_IWnQxi" true false 
Database "akonadi" opened using driver "QMYSQL" 
search paths:  ("/usr/lib/x86_64-linux-gnu/qt5/plugins", "/lib/kde5/plugins/", "/usr/lib/kde4/plugins", "/usr/lib/x86_64-linux-gnu/qt4/plugins", "/usr/bin", "/home/matthias/.kde/lib/kde4/", "/usr/lib/kde4/") 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10641_hKoRlL" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10641_hKoRlL" true false 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10637_kwHd3v" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10637_kwHd3v" true false 
Database "akonadi" opened using driver "QMYSQL" 
QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: Datei oder Verzeichnis nicht gefunden
QFileSystemWatcher: failed to add paths: /home/matthias/.config/ibus/bus
Bus::open: Can not get ibus-daemon's address. 
IBusInputContext::createInputContext: no connection to ibus-daemon 
kdeinit5: Got EXEC_NEW '/usr/bin/kde4' from launcher.
kdeinit5: preparing to launch '/usr/bin/kde4'
kf5.kinit.klauncher: "/usr/bin/kde4" (pid 10672) up and running.
Database "akonadi" opened using driver "QMYSQL" 
Database "akonadi" opened using driver "QMYSQL" 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10620_otunt3" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "AkonadiAgentServer_10620_otunt3" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_archivemail_agent_10622_6Dq9Ps" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_archivemail_agent_10622_6Dq9Ps" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_googlecontacts_resource_0_10632_3KvYwW" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_googlecontacts_resource_0_10632_3KvYwW" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_baloo_indexer_10623_Gpgm8Q" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_baloo_indexer_10623_Gpgm8Q" true false 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_maildispatcher_agent_10642_GE3dBX" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_maildispatcher_agent_10642_GE3dBX" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_googlecontacts_resource_1_10633_ScZsIk" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_googlecontacts_resource_1_10633_ScZsIk" true false 
Database "akonadi" opened using driver "QMYSQL" 
Database "akonadi" opened using driver "QMYSQL" 
Database "akonadi" opened using driver "QMYSQL" 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_followupreminder_agent_10630_uHMJKw" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_followupreminder_agent_10630_uHMJKw" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_googlecalendar_resource_0_10631_nQdDgJ" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_googlecalendar_resource_0_10631_nQdDgJ" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_imap_resource_0_10639_V65M8a" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_imap_resource_0_10639_V65M8a" true false 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_notes_agent_10646_ysGzN0" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_notes_agent_10646_ysGzN0" true false 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_newmailnotifier_agent_10645_H8MATY" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_newmailnotifier_agent_10645_H8MATY" true false 
kdeinit5: Got EXEC_NEW '/usr/bin/kde4' from launcher.
kdeinit5: preparing to launch '/usr/bin/kde4'
Database "akonadi" opened using driver "QMYSQL" 
kf5.kinit.klauncher: "/usr/bin/kde4" (pid 10697) up and running.
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_sendlater_agent_10650_px9J00" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_sendlater_agent_10650_px9J00" true false 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_migration_agent_10644_7oSrLW" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_migration_agent_10644_7oSrLW" true false 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_mailfilter_agent_10643_FPcTLZ" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_mailfilter_agent_10643_FPcTLZ" true false 
Agent instance created in separate process. 
completeShutdownOrCheckpoint called
Agent instance created in separate process. 
completeShutdownOrCheckpoint called
kf5.kinit.klauncher: Service:  2 "/home/matthias/.config/autostart/amarok.desktop"
kf5.kded: Loading second phase autoload
kdeinit5: Got EXEC_NEW '/usr/bin/amarok' from launcher.
kdeinit5: preparing to launch '/usr/bin/amarok'
kf5.kservice.sycoca: Trying to open ksycoca from "/home/matthias/.cache/ksycoca5"
kf5.kded: kded module "kscreen" still uses .desktop files ("kded/kscreen.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "networkwatcher" still uses .desktop files ("kded/networkwatcher.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "khotkeys" still uses .desktop files ("kded/khotkeys.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "kded_baloosearch_kio" still uses .desktop files ("kded/baloosearchfolderupdater.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "proxyscout" has already been found using JSON metadata, please don't install the now unneeded .desktop file ("kded/proxyscout.desktop").
kf5.kded: kded module "networkstatus" still uses .desktop files ("kded/networkstatus.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "freespacenotifier" still uses .desktop files ("kded/freespacenotifier.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "printmanager" still uses .desktop files ("kded/printmanager.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "ktouchpadenabler" still uses .desktop files ("kded/ktouchpadenabler.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "recentdocumentsnotifier" still uses .desktop files ("kded/recentdocumentsnotifier.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "appmenu" still uses .desktop files ("kded/appmenu.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "powerdevil" still uses .desktop files ("kded/powerdevil.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "desktopnotifier" still uses .desktop files ("kded/desktopnotifier.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "ktimezoned" still uses .desktop files ("kded/ktimezoned.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "soliduiserver" still uses .desktop files ("kded/soliduiserver.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "statusnotifierwatcher" still uses .desktop files ("kded/statusnotifierwatcher.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "ksysguard" still uses .desktop files ("kded/ksysguard.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "touchpad" still uses .desktop files ("kded/touchpad.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "keyboard" still uses .desktop files ("kded/keyboard.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "notificationhelper" still uses .desktop files ("kded/notificationhelper.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "networkmanagement" still uses .desktop files ("kded/networkmanagement.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "solidautoeject" still uses .desktop files ("kded/solidautoeject.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "remotedirnotify" still uses .desktop files ("kded/remotedirnotify.desktop"). Please port it to JSON metadata.
kf5.kded: kded module "platformstatus" still uses .desktop files ("kded/platformstatus.desktop"). Please port it to JSON metadata.
kf5.kded: 2nd phase: loading "khotkeys"
kf5.kded: found kded module "khotkeys" by prepending 'kded_' to the library path, please fix your metadata.
Installing the delayed initialization callback.
kf5.kded: Successfully loaded module "khotkeys"
kf5.kded: 2nd phase: loading "networkstatus"
kf5.kinit.klauncher: "/usr/bin/amarok" (pid 10707) up and running.
kf5.kinit.klauncher: Service:  2 "/home/matthias/.config/autostart/dropbox.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/dropbox' from launcher.
kdeinit5: preparing to launch '/usr/bin/dropbox'
kf5.kded: Successfully loaded module "networkstatus"
kf5.kded: 2nd phase: loading "freespacenotifier"
kf5.kded: found kded module "freespacenotifier" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kinit.klauncher: "/usr/bin/dropbox" (pid 10708) up and running.
kf5.kinit.klauncher: Service:  2 "/home/matthias/.config/autostart/kontact.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/kontact' from launcher.
kdeinit5: preparing to launch '/usr/bin/kontact'
kf5.kded: Successfully loaded module "freespacenotifier"
kf5.kded: 2nd phase: loading "ktimezoned"
kf5.kded: found kded module "ktimezoned" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kded: Successfully loaded module "ktimezoned"
kf5.kded: 2nd phase: loading "touchpad"
kf5.kded: found kded module "touchpad" by prepending 'kded_' to the library path, please fix your metadata.
Width:  3622  height:  2826
Approx. resX:  40  resY:  56
Touchpad resolution: x:  55  y:  98
Final resolution x: 55  y: 98
kf5.kded: Successfully loaded module "touchpad"
kf5.kded: 2nd phase: loading "keyboard"
kf5.kded: found kded module "keyboard" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kinit.klauncher: "/usr/bin/kontact" (pid 10709) up and running.
kf5.kinit.klauncher: Service:  2 "/home/matthias/.config/autostart/skype.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/skype' from launcher.
kdeinit5: preparing to launch '/usr/bin/skype'
kf5.kinit.klauncher: "/usr/bin/skype" (pid 10711) up and running.
kf5.kinit.klauncher: Service:  2 "/home/matthias/.config/autostart/yakuake.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/yakuake' from launcher.
kdeinit5: preparing to launch '/usr/bin/yakuake'
QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: Datei oder Verzeichnis nicht gefunden
QFileSystemWatcher: failed to add paths: /home/matthias/.config/ibus/bus
Bus::open: Can not get ibus-daemon's address. 
kf5.kinit.klauncher: "/usr/bin/yakuake" (pid 10713) up and running.
IBusInputContext::createInputContext: no connection to ibus-daemon 
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kf5.kinit.klauncher: Service:  2 "/etc/xdg/autostart/korgac.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/korgac' from launcher.
kdeinit5: preparing to launch '/usr/bin/korgac'
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
Amarok is already running!
kf5.kinit.klauncher: "/usr/bin/korgac" (pid 10717) up and running.
kf5.kinit.klauncher: appId= ":1.118" newAppId= ":1.118" pendingAppId= "*.korgac"
kf5.kinit.klauncher: appName= "118"
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kf5.kinit.klauncher: appId= ":1.119" newAppId= ":1.119" pendingAppId= "*.korgac"
kf5.kinit.klauncher: appName= "119"
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kf5.kinit.klauncher: appId= ":1.120" newAppId= ":1.120" pendingAppId= "*.korgac"
kf5.kinit.klauncher: appName= "120"
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kf5.kinit.klauncher: appId= ":1.121" newAppId= ":1.121" pendingAppId= "*.korgac"
kf5.kinit.klauncher: appName= "121"
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kf5.kinit.klauncher: appId= ":1.122" newAppId= ":1.122" pendingAppId= "*.korgac"
kf5.kinit.klauncher: appName= "122"
kdeinit5: PID 10713 terminated.
Yakuake is already running, toggling window ...
QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: Datei oder Verzeichnis nicht gefunden
QFileSystemWatcher: failed to add paths: /home/matthias/.config/ibus/bus
Bus::open: Can not get ibus-daemon's address. 
IBusInputContext::createInputContext: no connection to ibus-daemon 
Agent instance created in separate process. 
kf5.kinit.klauncher: appId= "org.freedesktop.Akonadi.Resource.akonadi_ical_resource_0" newAppId= "org.freedesktop.Akonadi.Resource.akonadi_ical_resource_0" pendingAppId= "*.korgac"
AkonadiAgentServer(10636) Akonadi::SingleFileResource<Settings>::readFile: "Keine Datei ausgewählt." 
kf5.kinit.klauncher: appName= "akonadi_ical_resource_0"
kf5.kinit.klauncher: appId= "org.freedesktop.Akonadi.Agent.akonadi_ical_resource_0" newAppId= "org.freedesktop.Akonadi.Agent.akonadi_ical_resource_0" pendingAppId= "*.korgac"
kf5.kinit.klauncher: appName= "akonadi_ical_resource_0"
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kf5.kinit.klauncher: appId= ":1.123" newAppId= ":1.123" pendingAppId= "*.korgac"
kf5.kinit.klauncher: appName= "123"
Dropbox isn't running!
Dropbox is already running!
kf5.kinit.klauncher: Service:  2 "/etc/xdg/autostart/nvidia-settings-autostart.desktop"
kdeinit5: Got EXEC_NEW '/bin/sh' from launcher.
kdeinit5: preparing to launch '/bin/sh'
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kf5.kinit.klauncher: "/bin/sh" (pid 10727) up and running.
kf5.kinit.klauncher: Service:  2 "/etc/xdg/autostart/kmix_autostart.desktop"
kdeinit5: Got EXEC_NEW '/usr/bin/kmix' from launcher.
kdeinit5: preparing to launch '/usr/bin/kmix'
kf5.kinit.klauncher: "/usr/bin/kmix" (pid 10728) up and running.
kdeinit5: PID 10708 terminated.
QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: Datei oder Verzeichnis nicht gefunden
QFileSystemWatcher: failed to add paths: /home/matthias/.config/ibus/bus
Bus::open: Can not get ibus-daemon's address. 
IBusInputContext::createInputContext: no connection to ibus-daemon 
Agent instance created in separate process. 
Agent instance created in separate process. 
kf5.kinit.klauncher: Service:  2 ""
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kdeinit5: PID 10728 terminated.
kdeinit5: PID 10727 terminated.
AkonadiAgentServer(10641) MaildirResource::attemptConfigRestoring: the resource is not properly configured: 
AkonadiAgentServer(10641) MaildirResource::attemptConfigRestoring: there is no config file for the resource. 
AkonadiAgentServer(10641) MaildirResource::attemptConfigRestoring: we create a new one. 
kontact(10465)/libakonadi Akonadi::EntityTreeModelPrivate::finalCollectionFetchJobDone: "Unbekannter Fehler." 
kontact(10465)/libakonadi Akonadi::EntityTreeModelPrivate::collectionFetchJobDone: Job error:  "Unbekannter Fehler." for collection: () 

kontact(10465)/libakonadi Akonadi::EntityTreeModelPrivate::collectionFetchJobDone: Job error:  "Unbekannter Fehler." for collection: () 

kontact(10465) MessageList::Widget::slotTagsFetched: Failed to load tags  "Unbekannter Fehler." 
kontact(10465)/libakonadi Akonadi::EntityTreeModelPrivate::finalCollectionFetchJobDone: "Unbekannter Fehler." 
kontact(10465)/libakonadi Akonadi::EntityTreeModelPrivate::collectionFetchJobDone: Job error:  "Unbekannter Fehler." for collection: () 

kontact(10465)/libakonadi Akonadi::EntityTreeModelPrivate::finalCollectionFetchJobDone: "Unbekannter Fehler." 
kontact(10465)/libakonadi Akonadi::EntityTreeModelPrivate::collectionFetchJobDone: Job error:  "Unbekannter Fehler." for collection: () 

kontact(10465) MailCommon::FilterManager::slotFinishedTagListing: failed to retrieve tags  "Unbekannter Fehler." 
kontact(10465) KMail::TagActionManager::finishedTagListing: "Unbekannter Fehler." 
dolphin(10672) DolphinApplication::restoreSession: Unknown class  ""  in session saved data! 
kontact(10465)/kdepimlibs (kpimidentities) KPIMIdentities::IdentityManager::readConfig: IdentityManager: There was no default identity. Marking first one as default. 
Database "akonadi" opened using driver "QMYSQL" 
Hspell: can't open /usr/share/hspell/hebrew.wgz.sizes.
akonadi_baloo_indexer(10623): "DatabaseLockError" "DatabaseLockError: Unable to get write lock on /home/matthias/.local/share/baloo/email/: already locked" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_maildispatcher_agent_10642_UMQ1ta" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_maildispatcher_agent_10642_UMQ1ta" true false 
akonadi_archivemail_agent(10622)/kdepimlibs (kpimidentities) KPIMIdentities::IdentityManager::readConfig: IdentityManager: There was no default identity. Marking first one as default. 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_maildispatcher_agent_10642_eb2Nsw" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_maildispatcher_agent_10642_eb2Nsw" true false 
akonadi_baloo_indexer(10623): "DatabaseLockError" "DatabaseLockError: Unable to get write lock on /home/matthias/.local/share/baloo/emailContacts/: already locked" 
dolphin(10697) DolphinApplication::restoreSession: Unknown class  ""  in session saved data! 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_archivemail_agent_10622_yuGoSW" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_archivemail_agent_10622_yuGoSW" true false 
interface not valid 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_archivemail_agent_10622_82ukDv" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_archivemail_agent_10622_82ukDv" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_notes_agent_10646_TbgBgy" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_notes_agent_10646_TbgBgy" true false 
Database "akonadi" opened using driver "QMYSQL" 
KCrash: Attempting to start /usr/bin/kdeinit5 from kdeinit
kdeinit5: Got EXEC_NEW '/usr/bin/kdeinit5' from wrapper.
kdeinit5: preparing to launch '/usr/bin/kdeinit5'
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
KCrash: crashing... crashRecursionCounter = 2
KCrash: Application Name = kdeinit5 path = /usr/bin pid = 10144
KCrash: Arguments: /usr/bin/kdeinit5 
dolphin(10672) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
ksmserver: Kcminit phase 2 done
ksmserver: Autostart 2 done
Warning: "sni-qt/10483" WARN  09:50:36.567 void StatusNotifierItemFactory::connectToSnw() Invalid interface to SNW_SERVICE 
"sni-qt/10456" WARN  09:50:36.567 void StatusNotifierItemFactory::connectToSnw() Invalid interface to SNW_SERVICE 
Warning: No systemtrayicon available
No systemtrayicon available
kdeinit5: Got EXEC_NEW 'firefox' from launcher.
kdeinit5: preparing to launch 'libkdeinit5_firefox'
kdeinit5: Shutting down running client.
Could not open firefox using a library: Cannot load library /usr/lib/x86_64-linux-gnu/libkdeinit5_firefox: (/usr/lib/x86_64-linux-gnu/libkdeinit5_firefox.so: Kann die Shared-Object-Datei nicht öffnen: Datei oder Verzeichnis nicht gefunden)
kdeinit5: PID 10711 terminated.
kdeinit5: Got termination request (PID 10141).
kdeinit5: Closed sockets, but not exiting until all children terminate.
klauncher: Exiting on signal 15
kf5.kinit.klauncher: "firefox" (pid 10774) up and running.
kdeinit5: PID 10142 terminated.
SearchManager::registerInstance( "akonadi_imap_resource_0" ) 
Registering search instance  "akonadi_imap_resource_0" 
Hspell: can't open /usr/share/hspell/hebrew.wgz.sizes.

(process:10774): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed
akonadi_newmailnotifier_agent(10645)/kdepimlibs (kpimidentities) KPIMIdentities::IdentityManager::readConfig: IdentityManager: There was no default identity. Marking first one as default. 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
dolphin(10697) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
kdeinit5: PID 10144 terminated.
QSystemTrayIcon::setVisible: No Icon set
"sni-qt/10723" WARN  09:50:36.794 void StatusNotifierItemFactory::connectToSnw() Invalid interface to SNW_SERVICE 
No systemtrayicon available
Hspell: can't open /usr/share/hspell/hebrew.wgz.sizes.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
akonadi_mailfilter_agent(10643)/kdepimlibs (kpimidentities) KPIMIdentities::IdentityManager::readConfig: IdentityManager: There was no default identity. Marking first one as default. 
QDBusObjectPath: invalid path ""
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_mailfilter_agent_10643_Xf1a2I" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_mailfilter_agent_10643_Xf1a2I" true false 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_mailfilter_agent_10643_vaiq7s" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_mailfilter_agent_10643_vaiq7s" true false 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
akonadi_notes_agent(10646) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
akonadi_migration_agent(10644) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
kontact(10465)/kdepimlibs (kpimidentities) KPIMIdentities::IdentityManager::readConfig: IdentityManager: There was no default identity. Marking first one as default. 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_mailfilter_agent_10643_ba7fYv" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "akonadi_mailfilter_agent_10643_ba7fYv" true false 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
akonadi_archivemail_agent(10622) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
kio_thumbnail(10776) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
Database "akonadi" opened using driver "QMYSQL" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
akonadi_mailfilter_agent(10643) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
Database "akonadi" opened using driver "QMYSQL" 
Database "akonadi" opened using driver "QMYSQL" 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "korgac_10723_uisSKx" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "korgac_10723_uisSKx" true false 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
kdeinit5: PID 10717 terminated.
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
kio_thumbnail(10796) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
kdeinit5: preparing to launch 'libkdeinit5_klauncher'
kdeinit5: Launched KLauncher, pid = 10820, result = 0
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
korgac(10723) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
json_parser - syntax error found,  forcing abort, Line 1 Column 0 
Database "akonadi" opened using driver "QMYSQL" 
kdeinit5: PID 10563 terminated.
Database "akonadi" opened using driver "QMYSQL" 
kontact(10465)/kdeui (kdelibs): No such XML file "/home/matthias/.kde/share/apps/kontact/default-.rc" 
kdeinit5: PID 10462 terminated.
interface not valid 
interface not valid 
interface not valid 
interface not valid 
interface not valid 
interface not valid 
interface not valid 
interface not valid 
interface not valid 
kdeinit5: PID 10709 terminated.
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_gkuel3" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_gkuel3" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_Ws8DFV" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_Ws8DFV" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_QisqiV" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_QisqiV" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_e8aR3V" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_e8aR3V" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_ap1lan" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_ap1lan" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_yGXqvH" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_yGXqvH" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_tR9zcM" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_tR9zcM" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_S24Krl" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_S24Krl" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_nVtNwu" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_nVtNwu" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_qUjpEJ" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_qUjpEJ" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_dCY80T" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_dCY80T" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_PtsYsU" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_PtsYsU" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_sIVvcM" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_sIVvcM" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_gPpZkj" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_gPpZkj" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_SaE9NQ" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_SaE9NQ" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_Tycz7c" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_Tycz7c" true false 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV2(const QString&, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_SWTI5J" true 
QDBusObjectPath Akonadi::Server::NotificationManager::subscribeV3(const QString&, bool, bool) Akonadi::Server::NotificationManager(0x81b6a0) "kontact_10465_SWTI5J" true false 
SEARCH: 
	Query: "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
	MimeTypes: () 
	Collections: QVector(2, 7, 22, 33, 34, 36, 37, 38, 2, 7, 15, 16, 15, 16, 18, 19, 20, 21, 18, 19, 20, 21, 22, 29, 30, 31, 32, 29, 30, 31, 32, 33, 34, 36, 37, 40, 42, 43, 44, 45, 46, 40, 42, 43, 44, 45, 46, 38, 39, 41, 39, 41) 
	Remote: false 
	Recursive true 
Executing search "kontact-1034160761-SearchSession" 
akonadiserver(10589) SearchPlugin::search: invalid query  "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
Search done "kontact-1034160761-SearchSession" (without remote search) 
	Result: 0 matches 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
kontact(10465) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
json_parser - syntax error found,  forcing abort, Line 1 Column 0 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.binary.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.addin.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slideshow.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.sheet.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.presentation.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.template.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-excel.template.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.template.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-word.document.macroEnabled.12" 
AkonadiAgentServer(10620) KMimeTypeRepository::parents: "/usr/share/mime/subclasses"  refers to unknown mimetype  "application/vnd.ms-powerpoint.slide.macroEnabled.12" 
SEARCH: 
	Query: "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
	MimeTypes: () 
	Collections: QVector(2, 7, 22, 33, 34, 36, 37, 38, 2, 7, 15, 16, 15, 16, 18, 19, 20, 21, 18, 19, 20, 21, 22, 29, 30, 31, 32, 29, 30, 31, 32, 33, 34, 36, 37, 40, 42, 43, 44, 45, 46, 40, 42, 43, 44, 45, 46, 38, 39, 41, 39, 41) 
	Remote: false 
	Recursive true 
Executing search "kontact-1034160761-SearchSession" 
akonadiserver(10589) SearchPlugin::search: invalid query  "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
Search done "kontact-1034160761-SearchSession" (without remote search) 
	Result: 0 matches 
json_parser - syntax error found,  forcing abort, Line 1 Column 0 
SEARCH: 
	Query: "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
	MimeTypes: () 
	Collections: QVector(2, 7, 22, 33, 34, 36, 37, 38, 2, 7, 15, 16, 15, 16, 18, 19, 20, 21, 18, 19, 20, 21, 22, 29, 30, 31, 32, 29, 30, 31, 32, 33, 34, 36, 37, 40, 42, 43, 44, 45, 46, 40, 42, 43, 44, 45, 46, 38, 39, 41, 39, 41) 
	Remote: false 
	Recursive true 
Executing search "kontact-1034160761-SearchSession" 
akonadiserver(10589) SearchPlugin::search: invalid query  "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
Search done "kontact-1034160761-SearchSession" (without remote search) 
	Result: 0 matches 
posting retrieval request for item 3450  there are  1  queues and  0  items in mine 
request for item 3450 still pending - waiting 
processing retrieval request for item 3450  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
json_parser - syntax error found,  forcing abort, Line 1 Column 0 
posting retrieval request for item 3450  there are  1  queues and  0  items in mine 
request for item 3450 still pending - waiting 
someone else requested item 3450 as well, marking as processed 
continuing 
request for item 3450 succeeded 
continuing 
request for item 3450 succeeded 
SEARCH: 
	Query: "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
	MimeTypes: () 
	Collections: QVector(2, 7, 22, 33, 34, 36, 37, 38, 2, 7, 15, 16, 15, 16, 18, 19, 20, 21, 18, 19, 20, 21, 22, 29, 30, 31, 32, 29, 30, 31, 32, 33, 34, 36, 37, 40, 42, 43, 44, 45, 46, 40, 42, 43, 44, 45, 46, 38, 39, 41, 39, 41) 
	Remote: false 
	Recursive true 
Executing search "kontact-1034160761-SearchSession" 
akonadiserver(10589) SearchPlugin::search: invalid query  "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
Search done "kontact-1034160761-SearchSession" (without remote search) 
	Result: 0 matches 
json_parser - syntax error found,  forcing abort, Line 1 Column 0 
posting retrieval request for item 3451  there are  1  queues and  0  items in mine 
request for item 3451 still pending - waiting 
processing retrieval request for item 3451  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
posting retrieval request for item 3451  there are  1  queues and  0  items in mine 
request for item 3451 still pending - waiting 
SEARCH: 
	Query: "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
	MimeTypes: () 
	Collections: QVector(2, 7, 22, 33, 34, 36, 37, 38, 2, 7, 15, 16, 15, 16, 18, 19, 20, 21, 18, 19, 20, 21, 22, 29, 30, 31, 32, 29, 30, 31, 32, 33, 34, 36, 37, 40, 42, 43, 44, 45, 46, 40, 42, 43, 44, 45, 46, 38, 39, 41, 47, 39, 41, 47) 
	Remote: false 
	Recursive true 
Executing search "kontact-1034160761-SearchSession" 
akonadiserver(10589) SearchPlugin::search: invalid query  "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
Search done "kontact-1034160761-SearchSession" (without remote search) 
	Result: 0 matches 
someone else requested item 3451 as well, marking as processed 
continuing 
request for item 3451 succeeded 
continuing 
request for item 3451 succeeded 
posting retrieval request for item 3452  there are  1  queues and  0  items in mine 
request for item 3452 still pending - waiting 
processing retrieval request for item 3452  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3452 succeeded 
posting retrieval request for item 3453  there are  1  queues and  0  items in mine 
request for item 3453 still pending - waiting 
processing retrieval request for item 3453  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3453 succeeded 
posting retrieval request for item 3454  there are  1  queues and  0  items in mine 
request for item 3454 still pending - waiting 
processing retrieval request for item 3454  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3454 succeeded 
posting retrieval request for item 3455  there are  1  queues and  0  items in mine 
processing retrieval request for item 3455  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
request for item 3455 still pending - waiting 
continuing 
request for item 3455 succeeded 
posting retrieval request for item 3456  there are  1  queues and  0  items in mine 
request for item 3456 still pending - waiting 
processing retrieval request for item 3456  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3456 succeeded 
posting retrieval request for item 3457  there are  1  queues and  0  items in mine 
request for item 3457 still pending - waiting 
processing retrieval request for item 3457  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3457 succeeded 
posting retrieval request for item 3458  there are  1  queues and  0  items in mine 
request for item 3458 still pending - waiting 
processing retrieval request for item 3458  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3458 succeeded 
posting retrieval request for item 3459  there are  1  queues and  0  items in mine 
processing retrieval request for item 3459  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
request for item 3459 still pending - waiting 
continuing 
request for item 3459 succeeded 
posting retrieval request for item 3460  there are  1  queues and  0  items in mine 
request for item 3460 still pending - waiting 
processing retrieval request for item 3460  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3460 succeeded 
posting retrieval request for item 3461  there are  1  queues and  0  items in mine 
request for item 3461 still pending - waiting 
processing retrieval request for item 3461  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3461 succeeded 
posting retrieval request for item 3462  there are  1  queues and  0  items in mine 
request for item 3462 still pending - waiting 
processing retrieval request for item 3462  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3462 succeeded 
posting retrieval request for item 3463  there are  1  queues and  0  items in mine 
processing retrieval request for item 3463  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
request for item 3463 still pending - waiting 
json_parser - syntax error found,  forcing abort, Line 1 Column 0 
continuing 
request for item 3463 succeeded 
posting retrieval request for item 3464  there are  1  queues and  0  items in mine 
request for item 3464 still pending - waiting 
processing retrieval request for item 3464  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3464 succeeded 
posting retrieval request for item 3465  there are  1  queues and  0  items in mine 
request for item 3465 still pending - waiting 
processing retrieval request for item 3465  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3465 succeeded 
posting retrieval request for item 3466  there are  1  queues and  0  items in mine 
request for item 3466 still pending - waiting 
processing retrieval request for item 3466  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3466 succeeded 
posting retrieval request for item 3467  there are  1  queues and  0  items in mine 
request for item 3467 still pending - waiting 
processing retrieval request for item 3467  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
SEARCH: 
	Query: "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
	MimeTypes: () 
	Collections: QVector(2, 7, 22, 33, 34, 36, 37, 38, 2, 7, 15, 16, 15, 16, 18, 19, 20, 21, 18, 19, 20, 21, 22, 29, 30, 31, 32, 29, 30, 31, 32, 33, 34, 36, 37, 40, 42, 43, 44, 45, 46, 40, 42, 43, 44, 45, 46, 38, 39, 41, 47, 48, 39, 41, 47, 48) 
	Remote: false 
	Recursive true 
Executing search "kontact-1034160761-SearchSession" 
akonadiserver(10589) SearchPlugin::search: invalid query  "{ "cond" : 0, "key" : "", "limit" : -1, "negated" : false, "value" : null }" 
Search done "kontact-1034160761-SearchSession" (without remote search) 
	Result: 0 matches 
continuing 
request for item 3467 succeeded 
posting retrieval request for item 3468  there are  1  queues and  0  items in mine 
processing retrieval request for item 3468  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
request for item 3468 still pending - waiting 
continuing 
request for item 3468 succeeded 
posting retrieval request for item 3469  there are  1  queues and  0  items in mine 
request for item 3469 still pending - waiting 
processing retrieval request for item 3469  parts: ("RFC822")  of resource: "akonadi_akonotes_resource_0" 
continuing 
request for item 3469 succeeded