parent
9d60fb8cc0
commit
b996d72872
3 changed files with 25 additions and 46 deletions
@ -1,29 +1,21 @@ |
|||||||
|
|
||||||
define('DIGEST_ENABLE', true); |
// ********************************* |
||||||
// Global option to enable daily digests. Also toggles the ability of users |
// *** Email and digest settings *** |
||||||
// to forward articles by email. |
// ********************************* |
||||||
|
|
||||||
define('DIGEST_EMAIL_LIMIT', 10); |
define('SMTP_FROM_NAME', 'Tiny Tiny RSS'); |
||||||
// The maximum amount of emails sent in one digest batch |
define('SMTP_FROM_ADDRESS', 'noreply@{$DomainName}'); |
||||||
|
|
||||||
define('DAEMON_SENDS_DIGESTS', true); |
|
||||||
// If update daemon and update_feeds should send digests |
|
||||||
// Disable if you prefer querying special URL (see wiki) |
|
||||||
|
|
||||||
define('DIGEST_FROM_NAME', 'Tiny Tiny RSS'); |
|
||||||
define('DIGEST_FROM_ADDRESS', 'noreply@{$DomainName}'); |
|
||||||
// Name, address and subject for sending outgoing mail. This applies |
// Name, address and subject for sending outgoing mail. This applies |
||||||
// to password reset notifications, digest emails and any other mail. |
// to password reset notifications, digest emails and any other mail. |
||||||
|
|
||||||
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('DIGEST_SMTP_HOST', 'localhost'); |
define('SMTP_HOST', 'localhost'); |
||||||
// SMTP Host to send outgoing mail. Blank - use system MTA. |
// SMTP Host to send outgoing mail. Blank - use system MTA. |
||||||
|
|
||||||
define('DIGEST_SMTP_LOGIN', ''); |
define('SMTP_LOGIN', ''); |
||||||
define('DIGEST_SMTP_PASSWORD', ''); |
define('SMTP_PASSWORD', ''); |
||||||
// These two options enable SMTP authentication when sending |
// These two options enable SMTP authentication when sending |
||||||
// outgoing mail. Require DIGEST_SMTP_HOST. |
// outgoing mail. Only used with SMTP_HOST |
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in new issue