Skip to content

Commit

Permalink
- minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Oct 24, 2018
1 parent 4c710f3 commit cf1627e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion geonode/local_settings.py.geoserver.sample
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,19 @@ if not SITEURL.endswith('/'):

ALLOWED_HOSTS = [HOSTNAME, 'localhost']

# TIME_ZONE = 'Europe/Paris'
#Define email service on GeoNode
EMAIL_ENABLE = True

if EMAIL_ENABLE:
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'localhost'
EMAIL_PORT = 25
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_USE_TLS = False
DEFAULT_FROM_EMAIL = '{{ project_name }} <no-reply@{{ project_name }}>'

TIME_ZONE = 'UTC'

DATABASES = {
'default': {
Expand Down

0 comments on commit cf1627e

Please sign in to comment.