]> git.wh0rd.org - tt-rss.git/blobdiff - include/rssfuncs.php
simplify default global config, expand sanity_check messages
[tt-rss.git] / include / rssfuncs.php
index 3dbcb34b2fc41fb8b65d508c7d854f105764e0be..7588428de958b14d1838c45e1c5cf54599bf840e 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+       define('DAEMON_UPDATE_LOGIN_LIMIT', 30);
+       define('DAEMON_FEED_LIMIT', 100);
+       define('DAEMON_SLEEP_INTERVAL', 120);
+
        function update_feedbrowser_cache($link) {
 
                $result = db_query($link, "SELECT feed_url, site_url, title, COUNT(id) AS subscribers
@@ -57,7 +61,7 @@
                // Process all other feeds using last_updated and interval parameters
 
                // Test if the user has loggued in recently. If not, it does not update its feeds.
-               if (DAEMON_UPDATE_LOGIN_LIMIT > 0) {
+               if (!SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
                        if (DB_TYPE == "pgsql") {
                                $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
                        } else {
                }
 
                // Send feed digests by email if needed.
-               if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
+               send_headlines_digests($link);
 
        } // function update_daemon_common