Skip to content

Commit

Permalink
Merge pull request #1514 from bbkz/master
Browse files Browse the repository at this point in the history
EMAIL_USE_TLS or EMAIL_USE_SSL
  • Loading branch information
rolandgeider authored Dec 5, 2023
2 parents 5ff7ecc + e5c74eb commit 3d31862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/docker/development/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
EMAIL_HOST_USER = env.str("EMAIL_HOST_USER")
EMAIL_HOST_PASSWORD = env.str("EMAIL_HOST_PASSWORD")
EMAIL_USE_TLS = env.bool("EMAIL_USE_TLS", True)
EMAIL_USE_SSL = env.bool("EMAIL_USE_SSL", True)
EMAIL_USE_SSL = env.bool("EMAIL_USE_SSL", False)
EMAIL_TIMEOUT = 60

# Sender address used for sent emails
Expand Down

0 comments on commit 3d31862

Please sign in to comment.