1.7.9 compat

This commit is contained in:
Daniel Berteaud 2013-05-14 17:03:16 +02:00
parent e8ac589c4d
commit 2579abb673
4 changed files with 18 additions and 3 deletions

View File

@ -50,3 +50,10 @@ HERE
// Hard expiration limit for sessions. Should be
// 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.

View File

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

View File

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

View File

@ -25,3 +25,9 @@
define('PUBSUBHUBBUB_ENABLED', false);
// Enable client PubSubHubbub support in tt-rss. When disabled, tt-rss
// 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).