# -*- coding: utf-8 -*-
DEBUG = TEMPLATE_DEBUG = False

ADMINS = (
#      ('admin1', 'admin1@example.org'),
)

LDAP_ACTIVATE = False

DATABASES = {
     # Base de donnée du SI
     'default': {
         'ENGINE': 'django.db.backends.postgresql_psycopg2',
         'NAME': '{{ db_name }}',
         'USER': '{{ db_user }}',
         'PASSWORD': '{{ db_password }}',
     },
}

ALLOWED_HOSTS = ['{{ public_fqdn }}', ]
SECRET_KEY = 'changeme'

STATIC_ROOT = '{{ www_static_assets_directory }}'

# Configuration for outgoing emails
#DEFAULT_FROM_EMAIL = "faimaison-si@legeox.net"
#EMAIL_USE_TLS = True
#EMAIL_HOST = "localhost"

MEMBER_DEFAULT_COTISATION = 16

FEEDS = (
          #('isp', 'https://faimaison.net/feeds/all.atom.xml', 3),
          ('ffdn', 'http://www.ffdn.org/fr/rss.xml', 3)
        )