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 /docs | |
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 'docs')
-rw-r--r-- | docs/content/doc/advanced/config-cheat-sheet.en-us.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md index a3bded679d..7ea14d2306 100644 --- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md +++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md @@ -62,7 +62,7 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`. HTTP protocol. - `USE_COMPAT_SSH_URI`: **false**: Force ssh:// clone url instead of scp-style uri when default SSH port is used. - + ### Repository - Pull Request (`repository.pull-request`) - `WORK_IN_PROGRESS_PREFIXES`: **WIP:,\[WIP\]**: List of prefixes used in Pull Request title to mark them as Work In Progress @@ -222,6 +222,7 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`. `FROM` and `SENDMAIL_PATH`. - `SENDMAIL_PATH`: **sendmail**: The location of sendmail on the operating system (can be command or full path). +- ``IS_TLS_ENABLED`` : **false** : Decide if SMTP connections should use TLS. ## Cache (`cache`) @@ -310,8 +311,8 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`. - `TOKEN`: **\<empty\>**: You need to specify the token, if you want to include in the authorization the metrics . The same token need to be used in prometheus parameters `bearer_token` or `bearer_token_file`. ## API (`api`) - -- `ENABLE_SWAGGER_ENDPOINT`: **true**: Enables /api/swagger, /api/v1/swagger etc. endpoints. True or false; default is true. + +- `ENABLE_SWAGGER_ENDPOINT`: **true**: Enables /api/swagger, /api/v1/swagger etc. endpoints. True or false; default is true. - `MAX_RESPONSE_ITEMS`: **50**: Max number of items in a page. ## i18n (`i18n`) |