We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have mail_settings.use_starttls, and we should add mail_settings.use_login (defaulting to True). Ref:
mail_settings.use_starttls
mail_settings.use_login
True
include_login
Let's also take this opportunity to make the configuration variables more readable. First guess, it should be like this:
FRACTAL_EMAIL_*
FRACTAL_EMAIL_USE_{STARTTLS,LOGIN}
FRACTAL_EMAIL_PASSWORD
FRACTAL_EMAIL_USE_LOGIN
The text was updated successfully, but these errors were encountered:
ychiucco
Successfully merging a pull request may close this issue.
We have
mail_settings.use_starttls
, and we should addmail_settings.use_login
(defaulting toTrue
).Ref:
include_login
option fractal-healthcheck#23Let's also take this opportunity to make the configuration variables more readable. First guess, it should be like this:
FRACTAL_EMAIL_*
variables are optionalFRACTAL_EMAIL_USE_{STARTTLS,LOGIN}
should be optional and default toTrue
FRACTAL_EMAIL_PASSWORD
should only be required ifFRACTAL_EMAIL_USE_LOGIN
is set toTrue
FRACTAL_EMAIL_PASSWORD
should still be handled the same way as now (with fernet encryption)The text was updated successfully, but these errors were encountered: