Skip to content

Coool/tt-rss-mailer-smtp-clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

  1. Git clone plugin to tt-rss/plugins.local/mailer_smtp
  2. Enable via TTRSS_PLUGINS global configuration setting (this is a system plugin, it can't be enabled per-user).
  3. Set the following plugin settings via .env or putenv() in config.php:
TTRSS_SMTP_SERVER=localhost:587
# Use this server (hostname:port). Empty value disables plugin.

TTRSS_SMTP_LOGIN=
TTRSS_SMTP_PASSWORD=
# Login/password for SMTP auth, if needed.

TTRSS_SMTP_SECURE=tls
#Use secure connection. Allowed values: `ssl`, `tls`, or empty.

#TTRSS_SMTP_SKIP_CERT_CHECKS=
# Accept all SSL certificates, use with caution.

#TTRSS_SMTP_CA_FILE=
# Use custom CA certificate for SSL/TLS secure connections. Only used if TTRSS_SMTP_SKIP_CERT_CHECKS is false.

Upgrading from legacy setup

If you don't use .env, migrate config.php values as follows:

define('SMTP_SERVER', 'hostname');putenv('TTRSS_SMTP_SERVER=hostname);