Skip to content

Commit

Permalink
define smtp encryption true or false to resolve NEXT_PRIVATE_SMTP_SECURE
Browse files Browse the repository at this point in the history
  • Loading branch information
compgeniuses committed Jul 29, 2024
1 parent 5fedabf commit f345e4f
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=smtp_settings['tls_verify']
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 f345e4f

Please sign in to comment.