2022-07-30 21:22:34 +00:00
|
|
|
# Email
|
|
|
|
|
|
|
|
## `EMAIL_HOST`
|
|
|
|
|
2024-02-07 06:04:17 +00:00
|
|
|
_Default:_ `None`
|
2022-07-30 21:22:34 +00:00
|
|
|
|
|
|
|
The host to use for sending email. This must be set to enable SMTP email delivery.
|
|
|
|
|
|
|
|
## `EMAIL_HOST_PASSWORD`
|
|
|
|
|
2024-02-07 06:04:17 +00:00
|
|
|
_Default:_ (empty)
|
2022-07-30 21:22:34 +00:00
|
|
|
|
|
|
|
Password to use for the SMTP server defined in `EMAIL_HOST`. This setting is used in
|
|
|
|
conjunction with `EMAIL_HOST_USER` when authenticating to the SMTP server.
|
|
|
|
|
|
|
|
## `EMAIL_HOST_USER`
|
|
|
|
|
2024-02-07 06:04:17 +00:00
|
|
|
_Default:_ (empty)
|
2022-07-30 21:22:34 +00:00
|
|
|
|
|
|
|
Username to use for the SMTP server defined in `EMAIL_HOST`.
|
|
|
|
|
|
|
|
## `EMAIL_PORT`
|
|
|
|
|
2024-02-07 06:04:17 +00:00
|
|
|
_Default:_ 25
|
2022-07-30 21:22:34 +00:00
|
|
|
|
|
|
|
Port to use for the SMTP server defined in `EMAIL_HOST`.
|
|
|
|
|
|
|
|
## `EMAIL_USE_TLS`
|
|
|
|
|
2024-02-07 06:04:17 +00:00
|
|
|
_Default:_ `False`
|
2022-07-30 21:22:34 +00:00
|
|
|
|
|
|
|
Whether to use a TLS (secure) connection when talking to the SMTP server.
|
|
|
|
|
|
|
|
## `EMAIL_USE_SSL`
|
|
|
|
|
2024-02-07 06:04:17 +00:00
|
|
|
_Default:_ `False`
|
2022-07-30 21:22:34 +00:00
|
|
|
|
|
|
|
Whether to use an implicit TLS (secure) connection when talking to the SMTP server.
|
|
|
|
|
|
|
|
## `EMAIL_SSL_KEYFILE`
|
|
|
|
|
2024-02-07 06:04:17 +00:00
|
|
|
_Default:_ `None`
|
2022-07-30 21:22:34 +00:00
|
|
|
|
|
|
|
f `EMAIL_USE_SSL` or `EMAIL_USE_TLS` is `True`, you can optionally specify the path to a
|
|
|
|
PEM-formatted certificate chain file to use for the SSL connection.
|
|
|
|
|
|
|
|
## `EMAIL_SSL_CERTFILE`
|
|
|
|
|
2024-02-07 06:04:17 +00:00
|
|
|
_Default:_ `None`
|
2022-07-30 21:22:34 +00:00
|
|
|
|
|
|
|
If `EMAIL_USE_SSL` or `EMAIL_USE_TLS` is `True`, you can optionally specify the path to
|
2024-02-07 06:04:17 +00:00
|
|
|
a PEM-formatted private key file to use for the SSL connection.
|