]> git.wh0rd.org - tt-rss.git/blobdiff - config.php-dist
vfeed group: disable special clause for Fresh feed
[tt-rss.git] / config.php-dist
index 05ec08ea63c69f6948c1688faeffc0d631acf4b8..191d648e39a58d6ae02c733189b17628ecb91462 100644 (file)
        define('DIGEST_ENABLE', true);
        // Global option to enable daily digests
 
-       define('DIGEST_HOSTNAME', 'your.domain.dom');
-       // Hostname for email digest signature
-
        define('DIGEST_EMAIL_LIMIT', 10);
        // The maximum amount of emails sent in one digest batch
 
 
        define('DIGEST_FROM_NAME', 'Tiny Tiny RSS');
        define('DIGEST_FROM_ADDRESS', 'noreply@your.domain.dom');
-       // Name and address for sending email digests from.
+       define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours');
+       // Name, address and subject for sending email digests from.
 
        define('DIGEST_SMTP_HOST', '');
        // SMTP Host to send digests. When blank tt-rss uses
        // These two options enable SMTP authentication when sending
        // digests. Require DIGEST_SMTP_HOST.
 
-       define('CONFIG_VERSION', 10);
+       define('DAEMON_FEED_LIMIT', 100);
+       // Limits the amount of feeds daemon updates on one run
+
+       define('ALLOW_REMOTE_USER_AUTH', false);
+   // Set to 'true' if you trust your web server's REMOTE_USER
+       // environment variable to validate that the user is logged in. This
+       // option can be used to integrate tt-rss with Apache's external
+       // authentication modules.
+
+       define('LOCK_DIRECTORY', '.');
+       // Directory for lockfiles, must be writable to the user you run
+       // daemon process or cronjobs under.
+
+       define('ALLOW_SELECT_UPDATE_METHOD', false);
+       // Allow users to select the library to update feeds with - e.g.
+       // Magpie or SimplePie
+
+       define('CONFIG_VERSION', 15);
        // Expected config version. Please update this option in config.php
        // if necessary (after migrating all new options from this file).