From 0647e9c8eb00298a122196e80675181f73a46715 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 19 Jun 2023 11:44:43 +0200 Subject: [PATCH 1/2] EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of those settings. --- web/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/README.md b/web/README.md index 3bedcbb..6e3b3fe 100644 --- a/web/README.md +++ b/web/README.md @@ -56,10 +56,10 @@ change them unless you know what you want. - `SMTP_HOST_PASSWORD`: Default is an empty string. - `SMTP_USE_TLS`: Specifies wheather the SMTP connection is encrypted - via TLS. Default is `False`. + via TLS. Default is `False`. (EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of those settings.) - `SMTP_USE_SSL`: Specifies wheather the SMTP connection is encrypted - via SSL. Default is `False`. + via SSL. Default is `False`. (EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of those settings.) - `DJANGO_LOG_URL`: Path to the django's log file. Defaults to `/opt/mailman-web-data/logs/mailmanweb.log`. From f3b1ac922f515aa2d71824a2987d95f5ba583b10 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Mon, 19 Jun 2023 19:54:13 -0700 Subject: [PATCH 2/2] nit: Use backticks for variables. --- web/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/README.md b/web/README.md index 6e3b3fe..a912ba6 100644 --- a/web/README.md +++ b/web/README.md @@ -56,7 +56,7 @@ change them unless you know what you want. - `SMTP_HOST_PASSWORD`: Default is an empty string. - `SMTP_USE_TLS`: Specifies wheather the SMTP connection is encrypted - via TLS. Default is `False`. (EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of those settings.) + via TLS. Default is `False`. (`EMAIL_USE_TLS`/`EMAIL_USE_SSL` are mutually exclusive, so only set one of those settings.) - `SMTP_USE_SSL`: Specifies wheather the SMTP connection is encrypted via SSL. Default is `False`. (EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of those settings.)