summaryrefslogtreecommitdiff
path: root/config.php-dist
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-26 11:32:48 +0100
committerAndrew Dolgov <[email protected]>2007-08-26 11:32:48 +0100
commita89311235c1fab36fda167f69f5f814e84a5f1c6 (patch)
treecd9d38e5c6a65d3398399d7ec2210adc16e640b2 /config.php-dist
parent2ef1af84c8ee231d421a381a9fceb979fa4c1cb2 (diff)
improve digest sending (closes #138)
Diffstat (limited to 'config.php-dist')
-rw-r--r--config.php-dist18
1 files changed, 14 insertions, 4 deletions
diff --git a/config.php-dist b/config.php-dist
index ecacf2028..8601f5628 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -73,9 +73,6 @@
define('MAIL_RESET_PASS', true);
// Send mail to user on password reset
- define('MAIL_FROM', 'TT-RSS Daemon <[email protected]>');
- // Pretty obvious, I suppose. Used for email digests & password notifications.
-
define('ENABLE_FEED_BROWSER', true);
// Enable or disable local feed browser
@@ -132,7 +129,7 @@
define('DIGEST_ENABLE', true);
// Global option to enable daily digests
- define('DIGEST_HOSTNAME', 'some.ttrss.host.dom');
+ define('DIGEST_HOSTNAME', 'your.domain.dom');
// Hostname for email digest signature
define('DIGEST_EMAIL_LIMIT', 10);
@@ -177,6 +174,19 @@
// parameter to speed up tt-rss when having a huge number of articles
// in the database (better yet, enable purging!)
+ define('DIGEST_FROM_NAME', 'Tiny Tiny RSS');
+ define('DIGEST_FROM_ADDRESS', '[email protected]');
+ // Name and address for sending email digests from.
+
+ define('DIGEST_SMTP_HOST', '');
+ // SMTP Host to send digests. When blank tt-rss uses
+ // PHP's default mail() function.
+
+ define('DIGEST_SMTP_LOGIN', '');
+ define('DIGEST_SMTP_PASSWORD', '');
+ // These two options enable SMTP authentication when sending
+ // digests. Require DIGEST_SMTP_HOST.
+
define('CONFIG_VERSION', 9);
// Expected config version. Please update this option in config.php
// if necessary (after migrating all new options from this file).