Skip to content

Commit

Permalink
revert smtp secure
Browse files Browse the repository at this point in the history
  • Loading branch information
compgeniuses committed Jul 29, 2024
1 parent d8c0acc commit 8bcd81d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SMTP_PASSWORD=smtp_settings['password']
SMTP_FROM_NAME=f'"Documenso" <{smtp_settings["username"]}>'
# REQUIRED: Defines the email address to use as the from address.
SMTP_FROM_ADDRESS=smtp_settings['username']
SMTP_ENCRYPTION='false' if smtp_settings['tls_verify'] else 'true'
SMTP_ENCRYPTION='true' if smtp_settings['tls_verify'] else 'false'


NEXTAUTH_URL = data.get("NEXTAUTH_URL", f'https://{host}')
Expand Down

0 comments on commit 8bcd81d

Please sign in to comment.