Some mostly cosmetic changes to CSRF
[mediagoblin.git] / mediagoblin / config_spec.ini
index 11badc1fe9ec3d13923fb0194b3e1bc787239d5c..900957cee4b23b3741659c5bc256b06142a1e881 100644 (file)
@@ -15,6 +15,10 @@ direct_remote_path = string(default="/mgoblin_static/")
 # set to false to enable sending notices
 email_debug_mode = boolean(default=True)
 email_sender_address = string(default="notice@mediagoblin.example.org")
+email_smtp_host = string(default='')
+email_smtp_port = integer(default=25)
+email_smtp_user = string(default=None)
+email_smtp_pass = string(default=None)
 
 # Set to false to disable registrations
 allow_registration = boolean(default=True)
@@ -37,15 +41,25 @@ celery_setup_elsewhere = boolean(default=False)
 # source files for a media file but can also be a HUGE security risk.
 allow_attachments = boolean(default=False)
 
+# Cookie stuff
+csrf_cookie_name = string(default='mediagoblin_csrftoken')
 
 [storage:publicstore]
+storage_class = string(default="mediagoblin.storage.filestorage:BasicFileStorage")
 base_dir = string(default="%(here)s/user_dev/media/public")
 base_url = string(default="/mgoblin_media/")
 
 [storage:queuestore]
+storage_class = string(default="mediagoblin.storage.filestorage:BasicFileStorage")
 base_dir = string(default="%(here)s/user_dev/media/queue")
 
 
+[beaker.cache]
+type = string(default="file")
+data_dir = string(default="%(here)s/user_dev/beaker/cache/data")
+lock_dir = string(default="%(here)s/user_dev/beaker/cache/lock")
+
+
 [celery]
 # known booleans
 celery_result_persistent = boolean()