diff options
author | Lanre Adelowo <adelowomailbox@gmail.com> | 2018-11-26 20:21:42 +0100 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-11-26 14:21:41 -0500 |
commit | 3a1ed825299d4686e4c5efc5324e0a70fc7dee2b (patch) | |
tree | 248148daee9706e1fb98fb5a9e2adcdf227cd01a /custom/conf/app.ini.sample | |
parent | ce9a5173feafd0903257229f8e2ffcc01b9ebcd2 (diff) | |
download | gitea-3a1ed825299d4686e4c5efc5324e0a70fc7dee2b.tar.gz gitea-3a1ed825299d4686e4c5efc5324e0a70fc7dee2b.zip |
Explicitly decide whether to use TLS in mailer's configuration (#5024)
* explicitly decide on using TLS for mail connections
* explicitly decide on using TLS for mail connections
* keep compatibility
Diffstat (limited to 'custom/conf/app.ini.sample')
-rw-r--r-- | custom/conf/app.ini.sample | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/custom/conf/app.ini.sample b/custom/conf/app.ini.sample index 147c99d942..58d100d805 100644 --- a/custom/conf/app.ini.sample +++ b/custom/conf/app.ini.sample @@ -388,6 +388,8 @@ SKIP_VERIFY = USE_CERTIFICATE = false CERT_FILE = custom/mailer/cert.pem KEY_FILE = custom/mailer/key.pem +; Should SMTP connection use TLS +IS_TLS_ENABLED = false ; Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format FROM = ; Mailer user name and password |