]> git.wh0rd.org - tt-rss.git/blobdiff - config.php-dist
move phpmailer to lib/
[tt-rss.git] / config.php-dist
index 81d04d0b718cf6dd31bc2963cee404d081e43bb1..e7238a6092f8f5529a667d267bc7de126c8f762a 100644 (file)
@@ -43,9 +43,6 @@
        // some use-cases (if you have more than one tt-rss window open, for example)
        // so it is disabled by default.
 
-       define('MAIL_RESET_PASS', true);
-       // Send mail to user on password reset
-       
        define('ENABLE_FEED_BROWSER', true);
        // Enable or disable local feed browser
 
        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).