]> git.wh0rd.org - tt-rss.git/blobdiff - config.php-dist
remove config option SMART_RPC_COUNTERS
[tt-rss.git] / config.php-dist
index a573df154fd34819b68b4552106c861a034c2fd4..85fe7cdc4ec2d1cfd6a861a9a5bdcd959abaf7b0 100644 (file)
        define('ICONS_DIR', "icons");
        define('ICONS_URL', "icons");
        // Local and URL path to the directory, where feed favicons are stored.
+       // Unless you really know what you're doing, please keep those relative
+       // to tt-rss main directory.
 
        define('SINGLE_USER_MODE', true);
        // Operate in single user mode, disables all functionality related to
        // multiple users.
        
-       define('SMART_RPC_COUNTERS', false);
-       // If enabled, stores feed counter information on the server side and sends
-       // only diffs to the client. In the nutshell, it saves your bandwidth and
-       // makes UI more responsive, but eats server memory.
-       // This option can introduce a lot of weird interface glitches in
-       // some use-cases (if you have more than one tt-rss window open, for example)
-       // so it is disabled by default.
-
-       define('GLOBAL_ENABLE_LABELS', false);
-       // Labels are a security risk, so this option can globally disable them for all users.
-
-       define('MAIL_RESET_PASS', true);
-       // Send mail to user on password reset
-       
        define('ENABLE_FEED_BROWSER', true);
        // Enable or disable local feed browser
 
        // outgoing mail. Require DIGEST_SMTP_HOST.
 
        define('DAEMON_FEED_LIMIT', 100);
-       // Limits the amount of feeds daemon updates on one run
+       // Limits the amount of feeds daemon (or a cronjob) updates on one run
 
        define('ALLOW_REMOTE_USER_AUTH', false);
    // Set to 'true' if you trust your web server's REMOTE_USER
        define('PHP_EXECUTABLE', '/usr/bin/php');
        // Path to PHP executable
 
-       define('CONFIG_VERSION', 17);
+       define('ENABLE_REGISTRATION', false);
+       // Allow users to register themselves. Please be vary that allowing
+       // random people to access your tt-rss installation is a security risk
+       // and potentially might lead to data loss or server exploit. Disabled
+       // by default.
+
+       define('REG_NOTIFY_ADDRESS', 'user@your.domain.dom');
+       // Email address to send new user notifications to.
+
+       define('REG_MAX_USERS', 10);
+       // Maximum amount of users which will be allowed to register on this
+       // system. 0 - no limit.
+
+       define('FEEDBACK_URL', '');
+       // Displays an URL for users to provide feedback or comments regarding
+       // this instance of tt-rss. Can lead to a forum, contact email, etc.
+
+       define('FORCE_ARTICLE_PURGE', 0);
+       // When this option is not 0, users ability to control feed purging
+       // intervals is disabled and all articles (which are not starred) 
+       // older than this amount of days are purged.
+
+       define('CONFIG_VERSION', 18);
        // Expected config version. Please update this option in config.php
        // if necessary (after migrating all new options from this file).