]> git.wh0rd.org - tt-rss.git/blobdiff - config.php-dist
css cleanup; remove auxDlg; add separate prefs.css
[tt-rss.git] / config.php-dist
index db6ec661f8e8702d1c40d8d3579fc94e2a3b4095..192cb15f923139ab6722f3d8f33bac2382670ee8 100644 (file)
        // Operate in single user mode, disables all functionality related to
        // multiple users.
 
+       define('SIMPLE_UPDATE_MODE', false);
+       // Enables fallback update mode where tt-rss tries to update feeds in
+       // background while tt-rss is open in your browser. 
+       // If you don't have a lot of feeds and don't want to or can't run 
+       // background processes while not running tt-rss, this method is generally 
+       // viable to keep your feeds up to date.
+       // Still, there are more robust (and recommended) updating methods 
+       // available, you can read about them here: http://tt-rss.org/wiki/UpdatingFeeds
+
        // *****************************
        // *** Files and directories ***
        // *****************************
        // *** Cookies and login sessions ***
        // **********************************
        
-       define('SESSION_COOKIE_LIFETIME', 0);
+       define('SESSION_COOKIE_LIFETIME', 86400*30);
        // Default lifetime of a session (e.g. login) cookie. In seconds, 
        // 0 means cookie will be deleted when browser closes.
+       // Setting this to zero will affect several user preferences
+       // like widescreen mode not saving.
 
-       define('SESSION_EXPIRE_TIME', 86400);
+       define('SESSION_EXPIRE_TIME', 86400*30);
        // Hard expiration limit for sessions. Should be
        // greater or equal to SESSION_COOKIE_LIFETIME
 
 
        define('SMTP_HOST', '');
        // SMTP Host to send outgoing mail. Blank - use system MTA.
+       
+       define('SMTP_PORT','');
+       // SMTP port to sent outgoing mail. Default is 25.
 
        define('SMTP_LOGIN', '');
        define('SMTP_PASSWORD', '');
        // Users may enable other user plugins from Preferences/Plugins but may not
        // disable plugins specified in this list.
 
-       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('OWNCLOUD_URL', '');
-       // owncloud-plugin:
-       // This is the base url of your owncloud server as called from the browser
-        // Actually this is a server global parameter only
-
        define('CONFIG_VERSION', 26);
        // Expected config version. Please update this option in config.php
        // if necessary (after migrating all new options from this file).