bsw@729: config.app_version = "2.beta12"
bsw@729:
bsw@729: config.instance_name = request.get_config_name()
bsw@729:
bsw@729: config.app_service_provider = "Snake Oil
10000 Berlin
Germany"
bsw@729:
bsw@729: config.use_terms = "=== Terms of Use ==="
bsw@729:
bsw@729: config.use_terms_checkboxes = {
bsw@729: {
bsw@729: name = "terms_of_use_v1",
bsw@729: html = "I accept the terms of use.",
bsw@729: not_accepted_error = "You have to accept the terms of use to be able to register."
bsw@729: }
bsw@729: }
bsw@729:
bsw@729: config.enabled_languages = { 'en', 'de', 'eo', 'el', 'hu' }
bsw@729:
bsw@729: config.default_lang = "en"
bsw@729:
bsw@729: config.delegation_warning_time = '6 months'
bsw@729:
bsw@729: config.mail_subject_prefix = "[LiquidFeedback] "
bsw@729:
bsw@729: config.fastpath_url_func = nil
bsw@729:
bsw@729: config.download_dir = nil
bsw@729:
bsw@729: config.download_use_terms = "=== Nutzungsbedingungen ===\nAlles ist verboten"
bsw@729:
bsw@729: config.public_access = false
bsw@729:
bsw@729: config.member_image_content_type = "image/jpeg"
bsw@729:
bsw@729: config.member_image_convert_func = {
bsw@729: avatar = function(data) return extos.pfilter(data, "convert", "jpeg:-", "-thumbnail", "48x48", "jpeg:-") end,
bsw@729: photo = function(data) return extos.pfilter(data, "convert", "jpeg:-", "-thumbnail", "240x240", "jpeg:-") end
bsw@729: }
bsw@729: