]> git.wh0rd.org - tt-rss.git/blob - config.php-dist
updated TODO
[tt-rss.git] / config.php-dist
1 <?
2 define(DB_CONN, "host=localhost dbname=fox user=fox password=XXXXXXXXXXX");
3 // DB connection string, PostgreSQL must be configured to accept connections
4 // via TCP/IP and authentified by password.
5
6 define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
7 // Local cache directory for RSS feeds
8
9 define(HEADLINES_PER_PAGE, 15);
10 define(MIN_UPDATE_TIME, 1800);
11
12 define(WEB_DEMO_MODE, false);
13
14 define(ENABLE_FEED_ICONS, true);
15 define(ICONS_DIR, "icons");
16 define(ICONS_URL, "icons");
17
18 define(PURGE_OLD_DAYS, 30);
19 // Articles older than this number of days will be deleted automatically
20
21 define(UPDATE_POST_ON_CHECKSUM_CHANGE, true);
22
23 define(ENABLE_PREFS_CATCHUP_UNCATCHUP, false);
24 // enable "Mark as read/unread" buttons in preferences dialog
25
26 ?>
27