summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorfox <[email protected]>2019-04-22 09:01:02 +0000
committerGogs <[email protected]>2019-04-22 09:01:02 +0000
commiteebc18f00ef5fbaebd4f9a6e43685f87ba8b537f (patch)
tree106f26361aa1a48f496615f88fa7342f81f756a8 /README.md
parent8906bf9fead9c1ef52e2e502b78480d8fd92e112 (diff)
parent09de83dd83281c141e21bc45204f536655bd301b (diff)
Merge branch 'dev/add_custom_tls_cert' of Neraud/ttrss-mailer-smtp into master
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 65bdd2a..0898929 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,10 @@ per-user).
define('SMTP_SKIP_CERT_CHECKS', false);
// Accept all SSL certificates, use with caution.
+
+ define('SMTP_CA_FILE', '/path/to/ca.crt');
+ // Use a custom CA certificate for SSL/TLS secure connections.
+ // Only used if SMTP_SKIP_CERT_CHECKS is false.
```
At least SMTP_SERVER needs to set for plugin to work.