Skip to content

Commit

Permalink
Make appstore changes to sync with IT email changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnbennett3 committed Jan 26, 2024
1 parent 67de2e4 commit b5cfe9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions appstore/appstore/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,12 +236,12 @@

# Email configuration
EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
EMAIL_HOST = "smtp.gmail.com"
EMAIL_PORT = "587"
EMAIL_HOST = "relay.unc.edu"
EMAIL_PORT = "25"
EMAIL_HOST_USER = os.environ.get("EMAIL_HOST_USER", "[email protected]")
EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD", "")
RECIPIENT_EMAILS = os.environ.get("RECIPIENT_EMAILS", "")
EMAIL_USE_TLS = True
EMAIL_USE_TLS = False
DEFAULT_FROM_EMAIL = os.environ.get("APPSTORE_DEFAULT_FROM_EMAIL", EMAIL_HOST_USER)
DEFAULT_SUPPORT_EMAIL = os.environ.get(
"APPSTORE_DEFAULT_SUPPORT_EMAIL", EMAIL_HOST_USER
Expand Down

0 comments on commit b5cfe9b

Please sign in to comment.