Changeset - f60f3e4ff22b
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2019-09-30 15:20:23
brettcsmith@brettcsmith.org
settings: THEME_CONTACT_EMAIL defaults to DEFAULT_FROM_EMAIL.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/settings.py
Show inline comments
...
 
@@ -29,13 +29,13 @@ CANONICAL_HOST = os.environ.get("DJANGO_CANONICAL_HOST", None)
 
# If DEFAULT_FROM_EMAIL is not set, email will most likely break in prod.
 
from_email = os.environ.get("DJANGO_DEFAULT_FROM_EMAIL", None)
 
if from_email is not None:
 
    DEFAULT_FROM_EMAIL = from_email
 
    SERVER_EMAIL = DEFAULT_FROM_EMAIL
 

	
 
THEME_CONTACT_EMAIL = os.environ.get("THEME_CONTACT_EMAIL", None)
 
THEME_CONTACT_EMAIL = os.environ.get("THEME_CONTACT_EMAIL", from_email)
 

	
 
# Local time zone for this installation. Choices can be found here:
 
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
 
# although not all choices may be available on all operating systems.
 
# On Unix systems, a value of None will cause Django to use the same
 
# timezone as the operating system.
0 comments (0 inline, 0 general)