1.7.9 compat

tags/0.2.4
Daniel Berteaud 12 years ago
parent e8ac589c4d
commit 2579abb673
  1. 7
      root/etc/e-smith/templates/usr/share/tt-rss/config.php/25auth
  2. 6
      root/etc/e-smith/templates/usr/share/tt-rss/config.php/35digest
  3. 2
      root/etc/e-smith/templates/usr/share/tt-rss/config.php/45sphinx
  4. 6
      root/etc/e-smith/templates/usr/share/tt-rss/config.php/55various

@ -50,3 +50,10 @@ HERE
// Hard expiration limit for sessions. Should be // Hard expiration limit for sessions. Should be
// greater or equal to SESSION_COOKIE_LIFETIME // greater or equal to SESSION_COOKIE_LIFETIME
define('FEED_CRYPT_KEY', '');
// Key used for encryption of passwords for password-protected feeds
// in the database. A string of 24 random characters. If left blank, encryption
// is not used. Requires mcrypt functions.
// Warning: changing this key will make your stored feed passwords impossible
// to decrypt.

@ -11,9 +11,9 @@
define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours'); define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours');
// Subject line for email digests // Subject line for email digests
define('SMTP_HOST', 'localhost'); define('SMTP_SERVER', '');
define('SMTP_PORT', '25'); // Hostname:port combination to send outgoing mail (i.e. localhost:25).
// SMTP Host to send outgoing mail. Blank - use system MTA. // Blank - use system MTA.
define('SMTP_LOGIN', ''); define('SMTP_LOGIN', '');
define('SMTP_PASSWORD', ''); define('SMTP_PASSWORD', '');

@ -6,3 +6,5 @@
define('SPHINX_INDEX', 'ttrss'); define('SPHINX_INDEX', 'ttrss');
// Index name in Sphinx configuration // Index name in Sphinx configuration
define('SPHINX_SERVER', 'localhost:9312');
// Hostname:port combination for the Sphinx server.

@ -25,3 +25,9 @@
define('PUBSUBHUBBUB_ENABLED', false); define('PUBSUBHUBBUB_ENABLED', false);
// Enable client PubSubHubbub support in tt-rss. When disabled, tt-rss // Enable client PubSubHubbub support in tt-rss. When disabled, tt-rss
// won't try to subscribe to PUSH feed updates. // won't try to subscribe to PUSH feed updates.
define('LOG_DESTINATION', '');
// Log destination to use. Possible values: sql (uses internal logging
// you can read in Preferences -> System), syslog - logs to system log.
// Setting this to blank uses PHP logging (usually to http server
// error.log).

Loading…
Cancel
Save