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
This is wrong:
"gmail": { "username": "[email protected]", "password": "ReallyStrongPassword", "server": "smtp.gmail.com", "port": 587
it must be like:
"gmail": { "username": "[email protected]", "password": "51727212cfae625b763d7e053d55e3a8a36d0b4465b95428b46340d66cae8f97", "somerndstring": "somerandomstring" "server": "smtp.gmail.com", "port": 587
where password: sha256(somerandomstringReallyStrongPassword)
leaving in clear text password is wrong way to do.
The text was updated successfully, but these errors were encountered:
Also there is better way - encrypt password with password so decrypt when it runs (user need to put passwords)
Sorry, something went wrong.
No branches or pull requests
This is wrong:
"gmail": {
"username": "[email protected]",
"password": "ReallyStrongPassword",
"server": "smtp.gmail.com",
"port": 587
it must be like:
"gmail": {
"username": "[email protected]",
"password": "51727212cfae625b763d7e053d55e3a8a36d0b4465b95428b46340d66cae8f97",
"somerndstring": "somerandomstring"
"server": "smtp.gmail.com",
"port": 587
where password: sha256(somerandomstringReallyStrongPassword)
leaving in clear text password is wrong way to do.
The text was updated successfully, but these errors were encountered: