Support local accounts & recover password
[pithos] / pithos / settings.py.dist
index 6c12a9f..df3c426 100644 (file)
@@ -60,11 +60,6 @@ DATABASES = {
 
 # The backend to use and its initilization options.
 
-# Simple.
-#backend_path = os.path.join(PROJECT_PATH, 'data/pithos/')
-#backend_db = os.path.join(PROJECT_PATH, 'data/pithos/db')
-#BACKEND = ('SimpleBackend', (backend_path, backend_db))
-
 # Modular.
 backend_module = 'pithos.backends.lib.sqlite'
 backend_path = os.path.join(PROJECT_PATH, 'data/pithos/')
@@ -74,6 +69,9 @@ backend_db = os.path.join(PROJECT_PATH, 'data/pithos/db')
 #backend_db = 'postgresql://user:pass@host/db'
 BACKEND = ('ModularBackend', (backend_module, backend_path, backend_db))
 
+# Bypass authentication for user administration.
+BYPASS_ADMIN_AUTH = False
+
 # 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.
@@ -147,15 +145,64 @@ INSTALLED_APPS = (
 #    'django.contrib.messages',
 #    'django.contrib.admin',
 #    'django.contrib.admindocs',
-    'pithos.aai',
+    'pithos.im',
     'pithos.api',
-    'pithos.public'
+    'pithos.public',
+    'pithos.ui'
 )
 
 # Set the expiration time of newly created auth tokens
 # to be this many hours after their creation time.
 AUTH_TOKEN_DURATION = 30 * 24
 
-# Default quota for new users.
-DEFAULT_QUOTA = 10 * 1024 * 1024 * 1024
+# Default setting for new accounts.
+DEFAULT_QUOTA = 50 * 1024 * 1024 * 1024
+DEFAULT_VERSIONING = 'auto'
+
+# Show these many users per page in admin interface.
+ADMIN_PAGE_LIMIT = 100
+
+# Authenticate via Twitter.
+TWITTER_KEY = ''
+TWITTER_SECRET = ''
+
+# Address to use for outgoing emails
+DEFAULT_FROM_EMAIL = 'Pithos <no-reply@grnet.gr>'
+FEEDBACK_FROM_EMAIL = DEFAULT_FROM_EMAIL
+FEEDBACK_CONTACT_EMAIL = 'support@pithos.grnet.gr'
+
+INVITATIONS_PER_LEVEL = {
+    0   :   100,
+    1   :   2,
+    2   :   0,
+    3   :   0,
+    4   :   0
+}
+
+BASE_URL = ''
+
+SERVICE_NAME = 'Pithos+'
+
+SUPPORT_EMAIL = ''
+
+# Where users should login with their invitation code
+INVITATION_LOGIN_TARGET = 'https://pithos.dev.grnet.gr/im/login/invitation' \
+                            '?code=%d' \
+                            '&next=https://pithos.dev.grnet.gr/ui'
+
+# Where users should activate their local account
+ACTIVATION_LOGIN_TARGET = BASEPATH + 'im/login/local/activate/' \
+                            '?auth=%s' \
+                            '&next=' + BASE_URL + 'im/login'
+
+# Where users should reset their local password
+PASSWORD_RESET_TARGET = BASE_URL + 'im/login/local/reset/' \
+                            '?auth=%s' \
+                            '&next=' + BASE_URL + 'im/login?next=' + BASE_URL + 'ui'
+
+
+# The server is behind a proy (apache and gunicorn setup).
+USE_X_FORWARDED_HOST = False
 
+# Use to log to a file.
+LOGFILE = None