We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b7374c commit 4c6317bCopy full SHA for 4c6317b
config.env.py
@@ -33,11 +33,11 @@
33
LDAP_BIND_PASS = environ.get("PACKET_LDAP_BIND_PASS", None)
34
35
# Mail Config
36
-MAIL_PROD = strtobool(environ.get("PACKET_MAIL_PROD", 'False'))
+MAIL_PROD = strtobool(environ.get("PACKET_MAIL_PROD", "False"))
37
MAIL_SERVER = environ.get("PACKET_MAIL_SERVER", "thoth.csh.rit.edu")
38
MAIL_USERNAME = environ.get("PACKET_MAIL_USERNAME", "[email protected]")
39
MAIL_PASSWORD = environ.get("PACKET_MAIL_PASSWORD", None)
40
-MAIL_USE_TLS = strtobool(environ.get("PACKET_MAIL_TLS", 'True'))
+MAIL_USE_TLS = strtobool(environ.get("PACKET_MAIL_TLS", "True"))
41
42
# OneSignal Config
43
ONESIGNAL_USER_AUTH_KEY = environ.get("PACKET_ONESIGNAL_USER_AUTH_KEY", None)
0 commit comments