Fixes SMTP URI documentation

This commit is contained in:
Marcos Peña 2022-04-08 16:11:09 +02:00
parent 661afa676f
commit 78216f5667
3 changed files with 7 additions and 6 deletions

View File

@ -335,9 +335,9 @@ SMTP configuration for sending e-mails. Possible values:
On a production instance, you'll usually want to use an external SMTP server: On a production instance, you'll usually want to use an external SMTP server:
- ``EMAIL_CONFIG=smtp://user@:password@youremail.host:25`` - ``EMAIL_CONFIG=smtp://user:password@youremail.host:25``
- ``EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465`` - ``EMAIL_CONFIG=smtp+ssl://user:password@youremail.host:465``
- ``EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587`` - ``EMAIL_CONFIG=smtp+tls://user:password@youremail.host:587``
.. note:: .. note::

View File

@ -0,0 +1 @@
Fixes docs' SMTP URI configuration (#1749) (1749)

View File

@ -58,9 +58,9 @@ LOGLEVEL=error
# `python3 -c 'import urllib.parse; print(urllib.parse.quote_plus # `python3 -c 'import urllib.parse; print(urllib.parse.quote_plus
# ("noreply@youremail.host"))'` # ("noreply@youremail.host"))'`
# (returns `noreply%40youremail.host`) # (returns `noreply%40youremail.host`)
# EMAIL_CONFIG=smtp://user@:password@youremail.host:25 # EMAIL_CONFIG=smtp://user:password@youremail.host:25
# EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465 # EMAIL_CONFIG=smtp+ssl://user:password@youremail.host:465
# EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587 # EMAIL_CONFIG=smtp+tls://user:password@youremail.host:587
# Make e-mail verification mandatory before using the service # Make e-mail verification mandatory before using the service
# Doesn't apply to admins. # Doesn't apply to admins.