From 7016296efa54191e55f96701170a01a54872c144 Mon Sep 17 00:00:00 2001 From: Rodrigue Chakode Date: Sun, 15 May 2022 23:25:22 +0200 Subject: [PATCH] Updated docs related to SMTP_SKIP_VERIFY_CERT SMTP_SKIP_VERIFY_CERT should be likely set to false for self-signed certificate --- docs/configuration-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration-variables.md b/docs/configuration-variables.md index 2153722..79f32f7 100644 --- a/docs/configuration-variables.md +++ b/docs/configuration-variables.md @@ -3,7 +3,7 @@ Regardless of the deployment platform (Google App Engine, Kubernetes, Docker), the following configuration parameters must be provided when deploying hugo-mx-gateway. * `SMTP_SERVER_ADDR`: Set the address of the SMTP server in the form of `host:port`. It's required that the SMTP server being supporting TLS. -* `SMTP_SKIP_VERIFY_CERT`: Tell whether the SMTP certificate should be validated against top level authorities. If you're using a self-signed certificate on the SMTP server, this value should be set to `false`. +* `SMTP_SKIP_VERIFY_CERT`: Tell whether the SMTP certificate should be validated against top level authorities. If you're using a self-signed certificate on the SMTP server, this value should be set to `true`. * `SMTP_AUTHENTICATION_ENABLED`: Boolean (default: `true`) indicating whether SMTP authentication is required or not. If true, the variables `SMTP_CLIENT_USERNAME` and `SMTP_CLIENT_PASSWORD` are used the perform the authentication. * `SMTP_CLIENT_USERNAME`: Set the username to connect to the SMTP server. * `SMTP_CLIENT_PASSWORD`: Set the password to connect to the SMTP server.