]> git.wh0rd.org - tt-rss.git/blobdiff - config.php-dist
remove twitter-specific code
[tt-rss.git] / config.php-dist
index 96841842cb0d23cf87321374b30ac2074a7d4179..93fbb1ab5255672fbbd4c5cb371d24ca7b453e12 100644 (file)
        define('CACHE_DIR', 'cache');
        // Local cache directory for RSS feed content.
 
-       define('TMP_DIRECTORY', '/tmp');
-       // Directory for temporary files
-
        define('ICONS_DIR', "feed-icons");
        define('ICONS_URL', "feed-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.
 
+       // **********************
+       // *** Authentication ***
+       // **********************
+
+       define('AUTH_MODULES', 'internal');
+       // Comma-separated list of authentication modules to use. 
+       // Available modules are:
+       // 1. internal - tt-rss internal user DB
+       // 2. remote - use server REMOTE_USER variable or client SSL certificate if enabled
+       // in preferences
+       //
+
+       define('AUTH_AUTO_CREATE', true);
+       // Allow authentication modules to auto-create users in tt-rss internal
+       // database when authenticated successfully.
+
+       define('AUTH_AUTO_LOGIN', true);
+       // Automatically login user on remote or other kind of externally supplied
+       // authentication, otherwise redirect to login form as normal.
+       // If set to true, users won't be able to set application language
+       // and settings profile.
+
        // *********************
        // *** Feed settings ***
        // *********************
 
-       define('SIMPLEPIE_CACHE_IMAGES', false);
-       // Allow caching feed images when using SimplePie, to bypass hotlink
-       // prevention and such at expense of local disk space and bandwidth.
-       // Note that you (or your users) also have to enable image caching 
-       // in feed editor.
-
        define('DEFAULT_UPDATE_METHOD', 0);
        // Which feed parsing library to use as default:
        // 0 - Magpie
@@ -77,7 +90,7 @@
        // URL to a PubSubHubbub-compatible hub server. If defined, "Published
        // articles" generated feed would automatically become PUSH-enabled.
 
-       define('PUBSUBHUBBUB_ENABLED', true);
+       define('PUBSUBHUBBUB_ENABLED', false);
        // Enable client PubSubHubbub support in tt-rss. When disabled, tt-rss
        // won't try to subscribe to PUSH feed updates.
 
        // Index name in Sphinx configuration. You can specify multiple indexes
        // as a comma-separated string.
 
-       // **********************
-       // *** Authentication ***
-       // **********************
-
-       define('ALLOW_REMOTE_USER_AUTH', false);
-       // Set to 'true' if you trust your web server's REMOTE_USER 
-       // environment variable that the user is logged in. This option can be 
-       // used to integrate tt-rss with Apache's external authentication modules.
-
-       define('AUTO_LOGIN', false);
-       // Set this to true if you use ALLOW_REMOTE_USER_AUTH or client SSL
-       // certificate authentication and you want to skip the login form. 
-       // If set to true, users won't be able to set application language 
-       // and settings profile.
-       // Otherwise users will be redirected to login form with their login
-       // information pre-filled.
-
-       define('AUTO_CREATE_USER', false);
-       // If users are authenticated by your web server, set this to true if
-       // You want new users to be automaticaly created in tt-rss database
-       // on first login
-
        // ***********************************
        // *** Self-registrations by users ***
        // ***********************************
        // These two options enable SMTP authentication when sending
        // outgoing mail. Only used with SMTP_HOST
 
-       // ************************************
-       // *** Twitter integration settings ***
-       // ************************************
-       
-       define('CONSUMER_KEY', '');
-       define('CONSUMER_SECRET', '');
-       // Your OAuth instance authentication information for Twitter, visit
-       // http://twitter.com/oauth_clients to register your instance.
-
        // ***************************************
        // *** Other settings (less important) ***
        // ***************************************
        define('CHECK_FOR_NEW_VERSION', true);
        // Check for new versions of tt-rss automatically.
 
-       define('COUNTERS_MAX_AGE', 365);
-       // Hard limit for unread counters calculation. Try tweaking this
-       // parameter to speed up tt-rss when having a huge number of articles
-       // in the database (better yet, enable purging!)
-
        define('ENABLE_GZIP_OUTPUT', false);
        // Selectively gzip output to improve wire performance. This requires
        // PHP Zlib extension on the server.
+       // Enabling this can break tt-rss in several httpd/php configurations,
+       // if you experience weird errors and tt-rss failing to start, blank pages
+       // after login, or content encoding errors, disable it.
 
        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('ARTICLE_BUTTON_PLUGINS', 'tweet,share,mail');
+       define('ARTICLE_BUTTON_PLUGINS', 'note,tweet,share,mail');
        // Comma-separated list of additional article action button plugins
        // to enable, like tweet button, etc.
-       // The following plugins are available: tweet, share, mail
+       // The following plugins are available: note, tweet, share, mail
+       // More plugins: http://tt-rss.org/wiki/Plugins
 
-       define('CONFIG_VERSION', 24);
+       define('CONFIG_VERSION', 26);
        // Expected config version. Please update this option in config.php
        // if necessary (after migrating all new options from this file).