Re: kde-pim hopeless?
"O. Sinclair" <[email protected]>
| Newsgroups | gmane.comp.kde.users.pim |
|---|---|
| Message-ID | <[email protected]> |
On 08/05/2013 08:09, Georgi Kourtev wrote: > Can you please share a script? Thanks. > gk > > > > On Wednesday 08 May 2013 08:00:23 O. Sinclair wrote: >> On 07/05/2013 16:31, Maurice Batey wrote: >>> On Tue, 07 May 2013 06:25:15 +0200, O. Sinclair wrote: >>>> address autocompletion is again working - it again went belly >>>> up in 4.10.2, worked fine until then and is working in yet to be >>>> released 4.10.3. >>>> >>> I'm a staunch user of KMail over many years, but Find Messages so >>> often >>> >>> fails to find what is there. (In desperation I tried Thunderbird and >>> Evolution, but returned to KMail as I missed the overall flexibility & >>> function.) >>> >>> For example, with KMail 4.8.5, asking it to find messages with "gmail.com" >>> in the From field in an Inbox of over 6,000 emails, finds 255. >>> >>> On Mageia-3* (beta4) with almost the same email folder KMail 4.10.2 fails >>> to find ANY. >>> >>> How can that be? >>> >>> (*In Mageia-3 System Settings, the following are all selected: >>> Enable Nepomuk Semantic Desktop >>> Enable Nepomuk File indexer (Says "File indexer is idle") >>> Enable Email Indexer ) >> >> the akonadi-nepomuk-feeder agent needs to be manually started on every >> login/boot. Use Akonadiconsole or script to do that and you should get >> better results. >> >> it is a known bug that we hopefully will see the end of soon > Hopefully these should work. For some reason they don't autostart for me. You will have to make some changes in paths inside the scripts. _______________________________________________ KDE PIM users mailing list Subscription management: https://mail.kde.org/mailman/listinfo/kdepim-users
delayRestartANF.sh
(application/x-shellscript, 437 B)
#!/bin/bash #Give nepomuk and akonadi time (in seconds) to start #sleep 5 #Check status of ANF FeederStatus=`qdbus org.freedesktop.Akonadi.Agent.akonadi_nepomuk_feeder / org.freedesktop.Akonadi.Agent.Status.isOnline` #If status still false if [ "$FeederStatus" = "false" ];then #Restart ANF qdbus org.freedesktop.Akonadi.Control /AgentManager org.freedesktop.Akonadi.AgentManager.restartAgentInstance "akonadi_nepomuk_feeder" fi
restartANF.sh
(application/x-shellscript, 130 B)
#!/bin/bash #Restart ANF in the background, don't block KDE start-up /home/sinclair/scripts/delayRestartANF.sh >/dev/null 2>&1 &