]> git.mxchange.org Git - friendica.git/blobdiff - include/poller.php
See issue 1491: We need to generate a new guid to make Diaspora work
[friendica.git] / include / poller.php
index 933624ecb57ef0621e3cfc4e6adac52c8b71cc8e..7cc1a285276222cd1d1e0c06472fef06865cc111 100644 (file)
@@ -82,6 +82,14 @@ function poller_run(&$argv, &$argc){
 
        proc_run('php',"include/dsprphotoq.php");
 
+       // run the process to discover global contacts in the background
+
+       proc_run('php',"include/discover_poco.php");
+
+       // run the process to update locally stored global contacts in the background
+
+       proc_run('php',"include/discover_poco.php", "checkcontact");
+
        // expire any expired accounts
 
        q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
@@ -103,7 +111,11 @@ function poller_run(&$argv, &$argc){
                $abandon_days = 0;
 
        // Check OStatus conversations
-       check_conversations();
+       // Check only conversations with mentions (for a longer time)
+       check_conversations(true);
+
+       // Check every conversation
+       check_conversations(false);
 
        // To-Do: Regenerate usage statistics
        // q("ANALYZE TABLE `item`");