From 08cbb718fa7b03094863efc4ab22ce5e14ebbb9f Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 1 Jul 2020 12:24:12 -0700 Subject: [PATCH] prod_settings_template: Fix confusing {random_token} in comment. This was a typo in the original implementation; it should say {token}. --- zproject/prod_settings_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zproject/prod_settings_template.py b/zproject/prod_settings_template.py index 0187552b29..bcb14f6033 100644 --- a/zproject/prod_settings_template.py +++ b/zproject/prod_settings_template.py @@ -85,7 +85,7 @@ EXTERNAL_HOST = 'zulip.example.com' # The noreply address to be used as the sender for certain generated # emails. Messages sent to this address could contain sensitive user # data and should not be delivered anywhere. The default is -# e.g. noreply-{random_token}@zulip.example.com (if EXTERNAL_HOST is +# e.g. noreply-{token}@zulip.example.com (if EXTERNAL_HOST is # zulip.example.com). There are potential security issues if you set # ADD_TOKENS_TO_NOREPLY_ADDRESS=False to remove the token; see # https://zulip.readthedocs.io/en/latest/production/email.html for details.