2014-06-18 10:49:21 -04:00
|
|
|
# Available options:
|
2014-06-12 18:03:03 -04:00
|
|
|
#
|
2014-06-18 10:49:21 -04:00
|
|
|
# default - The default value of the setting.
|
|
|
|
# client - Set to true if the javascript should have access to this setting's value.
|
|
|
|
# refresh - Set to true if clients should refresh when the setting is changed.
|
|
|
|
# min - For a string setting, the minimum length. For an integer setting, the minimum value.
|
|
|
|
# max - For a string setting, the maximum length. For an integer setting, the maximum value.
|
|
|
|
# regex - A regex that the value must match.
|
|
|
|
# enum - The setting has a fixed set of allowed values, and only one can be chosen.
|
|
|
|
# Set to the class name that defines the set.
|
|
|
|
# type: email - Must be a valid email address.
|
|
|
|
# type: username - Must match the username of an existing user.
|
2014-06-18 12:07:18 -04:00
|
|
|
# type: list - A list of values, chosen from a set of valid values defined in the choices option.
|
2014-08-10 11:46:04 -04:00
|
|
|
#
|
|
|
|
# A type:list setting with the word 'colors' in its name will make color values have a bold line of the corresponding color
|
|
|
|
#
|
2013-11-14 12:37:41 -05:00
|
|
|
required:
|
2013-11-06 15:47:26 -05:00
|
|
|
title:
|
|
|
|
client: true
|
|
|
|
default: 'Discourse'
|
2014-06-18 10:49:21 -04:00
|
|
|
site_description:
|
|
|
|
default: ''
|
2014-06-09 15:17:36 -04:00
|
|
|
contact_email:
|
|
|
|
default: ''
|
2014-06-12 18:03:03 -04:00
|
|
|
type: email
|
2014-06-09 15:17:36 -04:00
|
|
|
notification_email:
|
2014-06-19 14:58:03 -04:00
|
|
|
default: 'info@unconfigured.discourse.org'
|
2014-06-12 18:03:03 -04:00
|
|
|
type: email
|
2014-06-11 14:42:41 -04:00
|
|
|
site_contact_username:
|
|
|
|
default: ''
|
2014-06-12 18:03:03 -04:00
|
|
|
type: username
|
2013-11-06 15:47:26 -05:00
|
|
|
logo_url:
|
|
|
|
client: true
|
2013-12-22 18:06:33 -05:00
|
|
|
default: '/images/d-logo-sketch.png'
|
2013-11-06 15:47:26 -05:00
|
|
|
logo_small_url:
|
|
|
|
client: true
|
2013-12-22 18:06:33 -05:00
|
|
|
default: '/images/d-logo-sketch-small.png'
|
2014-03-18 15:56:17 -04:00
|
|
|
digest_logo_url:
|
|
|
|
client: false
|
|
|
|
default: ''
|
2014-06-18 15:44:00 -04:00
|
|
|
mobile_logo_url:
|
|
|
|
client: true
|
|
|
|
default: ''
|
2013-11-13 14:02:47 -05:00
|
|
|
favicon_url:
|
|
|
|
client: true
|
2013-12-22 18:06:33 -05:00
|
|
|
default: '/images/default-favicon.ico'
|
2013-12-26 21:40:13 -05:00
|
|
|
apple_touch_icon_url: '/images/default-apple-touch-icon.png'
|
2013-11-13 14:02:47 -05:00
|
|
|
|
2013-11-14 15:05:48 -05:00
|
|
|
basic:
|
|
|
|
default_locale:
|
|
|
|
default: 'en'
|
|
|
|
enum: 'LocaleSiteSetting'
|
2014-02-21 00:52:11 -05:00
|
|
|
refresh: true
|
2014-02-08 20:35:46 -05:00
|
|
|
allow_user_locale:
|
|
|
|
client: true
|
|
|
|
default: false
|
2014-03-21 21:14:35 -04:00
|
|
|
suggested_topics:
|
|
|
|
client: true
|
|
|
|
default: 5
|
2014-06-12 18:03:03 -04:00
|
|
|
min: 0
|
2014-06-03 17:48:18 -04:00
|
|
|
limit_suggested_to_category:
|
|
|
|
client: false
|
|
|
|
default: false
|
2014-03-21 21:14:35 -04:00
|
|
|
default_external_links_in_new_tab: false
|
|
|
|
track_external_right_clicks:
|
|
|
|
client: true
|
|
|
|
default: false
|
2014-01-25 19:42:25 -05:00
|
|
|
ga_universal_tracking_code:
|
|
|
|
client: true
|
|
|
|
default: ''
|
2014-06-20 13:02:04 -04:00
|
|
|
regex: "^UA-\\d+-\\d+$"
|
2014-01-25 19:42:25 -05:00
|
|
|
ga_universal_domain_name:
|
|
|
|
client: true
|
|
|
|
default: 'auto'
|
2014-06-20 13:02:04 -04:00
|
|
|
ga_tracking_code:
|
|
|
|
client: true
|
|
|
|
default: ''
|
|
|
|
ga_domain_name:
|
|
|
|
client: true
|
|
|
|
default: ''
|
2013-11-14 15:05:48 -05:00
|
|
|
top_menu:
|
|
|
|
client: true
|
2014-03-07 13:07:53 -05:00
|
|
|
refresh: true
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2014-03-14 19:03:01 -04:00
|
|
|
default: 'latest|new|unread|starred|top|categories'
|
2014-06-04 12:51:21 -04:00
|
|
|
choices:
|
|
|
|
- latest
|
|
|
|
- new
|
|
|
|
- unread
|
|
|
|
- starred
|
|
|
|
- top
|
|
|
|
- categories
|
|
|
|
- read
|
|
|
|
- posted
|
2013-11-14 15:05:48 -05:00
|
|
|
post_menu:
|
|
|
|
client: true
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2014-06-10 15:27:43 -04:00
|
|
|
default: 'like|share|flag|edit|bookmark|delete|admin|reply'
|
2014-06-01 10:37:51 -04:00
|
|
|
choices:
|
|
|
|
- like
|
|
|
|
- edit
|
|
|
|
- flag
|
|
|
|
- delete
|
|
|
|
- share
|
|
|
|
- bookmark
|
|
|
|
- admin
|
|
|
|
- reply
|
2014-06-10 15:27:43 -04:00
|
|
|
post_menu_hidden_items:
|
2014-05-31 11:18:53 -04:00
|
|
|
client: true
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2014-06-12 11:20:44 -04:00
|
|
|
default: 'edit|delete|admin'
|
2014-06-10 15:27:43 -04:00
|
|
|
choices:
|
|
|
|
- like
|
|
|
|
- edit
|
|
|
|
- flag
|
|
|
|
- delete
|
|
|
|
- share
|
|
|
|
- bookmark
|
|
|
|
- admin
|
|
|
|
- reply
|
2013-11-14 15:05:48 -05:00
|
|
|
share_links:
|
|
|
|
client: true
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2013-11-14 15:05:48 -05:00
|
|
|
default: 'twitter|facebook|google+|email'
|
2014-06-01 10:37:51 -04:00
|
|
|
choices:
|
|
|
|
- twitter
|
|
|
|
- facebook
|
|
|
|
- google+
|
|
|
|
- email
|
2013-11-14 15:05:48 -05:00
|
|
|
category_colors:
|
|
|
|
client: true
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2013-11-14 15:05:48 -05:00
|
|
|
default: 'BF1E2E|F1592A|F7941D|9EB83B|3AB54A|12A89D|25AAE2|0E76BD|652D90|92278F|ED207B|8C6238|231F20|808281|B3B5B4|283890'
|
2014-03-21 21:14:35 -04:00
|
|
|
enable_mobile_theme:
|
|
|
|
client: true
|
|
|
|
default: true
|
2013-11-14 15:05:48 -05:00
|
|
|
relative_date_duration:
|
|
|
|
client: true
|
|
|
|
default: 30
|
2014-06-12 18:03:03 -04:00
|
|
|
min: 0
|
|
|
|
topics_per_period_in_top_summary:
|
|
|
|
default: 20
|
|
|
|
min: 1
|
|
|
|
topics_per_period_in_top_page:
|
|
|
|
default: 50
|
|
|
|
min: 1
|
2014-03-21 21:14:35 -04:00
|
|
|
category_featured_topics:
|
|
|
|
client: true
|
|
|
|
default: 3
|
2014-06-12 18:03:03 -04:00
|
|
|
min: 1
|
2014-05-16 11:33:44 -04:00
|
|
|
fixed_category_positions:
|
|
|
|
client: true
|
|
|
|
default: false
|
2014-06-12 18:03:03 -04:00
|
|
|
topics_per_page:
|
|
|
|
default: 30
|
2014-06-12 18:21:18 -04:00
|
|
|
min: 1
|
2014-09-10 15:17:51 -04:00
|
|
|
client: true
|
2014-07-01 17:12:03 -04:00
|
|
|
show_subcategory_list:
|
|
|
|
default: false
|
|
|
|
client: true
|
2014-03-21 21:14:35 -04:00
|
|
|
posts_per_page:
|
|
|
|
client: true
|
|
|
|
default: 20
|
2014-06-12 18:21:18 -04:00
|
|
|
min: 1
|
2014-03-05 07:52:20 -05:00
|
|
|
enable_badges:
|
|
|
|
client: true
|
2014-07-01 22:32:16 -04:00
|
|
|
default: true
|
2013-11-14 15:05:48 -05:00
|
|
|
|
2014-07-13 05:23:31 -04:00
|
|
|
login:
|
2013-11-13 14:02:47 -05:00
|
|
|
invite_only:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
|
|
|
default: false
|
2013-11-13 14:02:47 -05:00
|
|
|
login_required:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
|
|
|
default: false
|
|
|
|
must_approve_users:
|
|
|
|
client: true
|
|
|
|
default: false
|
2014-03-21 21:14:35 -04:00
|
|
|
enable_local_logins:
|
|
|
|
client: true
|
|
|
|
default: true
|
2014-07-14 15:42:14 -04:00
|
|
|
allow_new_registrations:
|
|
|
|
client: true
|
|
|
|
default: true
|
2014-05-21 19:40:59 -04:00
|
|
|
# The default value of enable_google_logins changed from true to false.
|
|
|
|
# See db/migrate/20140521220115_google_openid_default_has_changed.rb
|
2013-11-13 14:02:47 -05:00
|
|
|
enable_google_logins:
|
2014-05-21 18:19:40 -04:00
|
|
|
client: true
|
|
|
|
default: false
|
|
|
|
enable_google_oauth2_logins:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2014-06-04 11:35:18 -04:00
|
|
|
default: false
|
2014-05-21 18:19:40 -04:00
|
|
|
google_oauth2_client_id: ''
|
|
|
|
google_oauth2_client_secret: ''
|
2013-11-13 14:02:47 -05:00
|
|
|
enable_yahoo_logins:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2014-06-04 11:35:18 -04:00
|
|
|
default: false
|
2013-11-13 14:02:47 -05:00
|
|
|
enable_twitter_logins:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2014-06-04 11:35:18 -04:00
|
|
|
default: false
|
2014-06-20 13:02:04 -04:00
|
|
|
twitter_consumer_key:
|
|
|
|
default: ''
|
2014-08-22 18:42:37 -04:00
|
|
|
regex: "^[a-zA-Z0-9_+-]*$"
|
2014-06-20 13:02:04 -04:00
|
|
|
twitter_consumer_secret:
|
|
|
|
default: ''
|
2014-08-22 18:42:37 -04:00
|
|
|
regex: "^[a-zA-Z0-9_+-]*$"
|
2013-11-13 14:02:47 -05:00
|
|
|
enable_facebook_logins:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2014-06-04 11:35:18 -04:00
|
|
|
default: false
|
2014-06-20 13:02:04 -04:00
|
|
|
facebook_app_id:
|
|
|
|
default: ''
|
|
|
|
regex: "^\\d+$"
|
|
|
|
facebook_app_secret:
|
|
|
|
default: ''
|
|
|
|
regex: "^[a-f0-9]*$"
|
2013-11-13 14:02:47 -05:00
|
|
|
enable_github_logins:
|
|
|
|
client: true
|
|
|
|
default: false
|
2014-06-20 13:02:04 -04:00
|
|
|
github_client_id:
|
|
|
|
default: ''
|
|
|
|
regex: "^[a-f0-9]*$"
|
|
|
|
github_client_secret:
|
|
|
|
default: ''
|
|
|
|
regex: "^[a-f0-9]*$"
|
2014-03-21 21:14:35 -04:00
|
|
|
enable_sso:
|
|
|
|
client: true
|
|
|
|
default: false
|
|
|
|
sso_url: ''
|
|
|
|
sso_secret: ''
|
|
|
|
sso_overrides_email: false
|
|
|
|
sso_overrides_username: false
|
|
|
|
sso_overrides_name: false
|
2014-08-19 03:49:14 -04:00
|
|
|
sso_overrides_avatar:
|
|
|
|
default: false
|
|
|
|
client: true
|
2014-08-24 05:06:43 -04:00
|
|
|
email_domains_blacklist:
|
|
|
|
default: 'mailinator.com'
|
|
|
|
type: list
|
|
|
|
email_domains_whitelist:
|
|
|
|
default: ''
|
|
|
|
type: list
|
2014-09-11 01:53:29 -04:00
|
|
|
forgot_password_strict: false
|
2014-07-13 05:23:31 -04:00
|
|
|
|
|
|
|
users:
|
|
|
|
min_username_length:
|
|
|
|
client: true
|
|
|
|
default: 3
|
|
|
|
min: 1
|
|
|
|
max_username_length:
|
|
|
|
client: true
|
|
|
|
default: 20
|
|
|
|
min: 8
|
|
|
|
max: 60
|
|
|
|
min_password_length:
|
|
|
|
client: true
|
|
|
|
default: 8
|
|
|
|
min: 1
|
|
|
|
block_common_passwords: true
|
2014-07-16 12:25:24 -04:00
|
|
|
enforce_global_nicknames:
|
|
|
|
default: false
|
|
|
|
hidden: true
|
|
|
|
discourse_org_access_key:
|
|
|
|
default: ''
|
|
|
|
hidden: true
|
2013-11-13 14:02:47 -05:00
|
|
|
username_change_period: 3
|
2014-03-21 21:14:35 -04:00
|
|
|
auto_track_topics_after: 240000
|
2013-11-13 14:02:47 -05:00
|
|
|
email_editable: true
|
2014-08-14 22:57:29 -04:00
|
|
|
logout_redirect:
|
|
|
|
client: true
|
|
|
|
default: ''
|
2013-11-13 14:02:47 -05:00
|
|
|
enable_names:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
|
|
|
default: true
|
2014-07-16 19:40:03 -04:00
|
|
|
invite_expiry_days: 30
|
2014-07-01 12:52:52 -04:00
|
|
|
invite_passthrough_hours: 0
|
2014-08-01 07:06:31 -04:00
|
|
|
invites_per_page:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2014-08-01 07:06:31 -04:00
|
|
|
default: 40
|
2014-02-20 12:29:40 -05:00
|
|
|
delete_user_max_post_age:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2014-01-08 17:50:08 -05:00
|
|
|
default: 60
|
2014-04-14 15:10:32 -04:00
|
|
|
delete_all_posts_max:
|
|
|
|
client: true
|
|
|
|
default: 15
|
2014-03-31 15:53:38 -04:00
|
|
|
redirect_users_to_top_page: true
|
2014-09-23 13:01:44 -04:00
|
|
|
show_email_on_profile:
|
|
|
|
client: true
|
|
|
|
default: false
|
2014-07-01 19:08:25 -04:00
|
|
|
email_token_valid_hours: 24
|
|
|
|
email_token_grace_period_hours: 0
|
|
|
|
|
2013-11-13 14:02:47 -05:00
|
|
|
posting:
|
2013-11-06 15:47:26 -05:00
|
|
|
min_post_length:
|
|
|
|
client: true
|
2014-08-29 16:20:23 -04:00
|
|
|
min: 1
|
2013-11-06 15:47:26 -05:00
|
|
|
default:
|
|
|
|
test: 5
|
|
|
|
default: 20
|
|
|
|
min_private_message_post_length:
|
|
|
|
client: true
|
2014-08-29 16:20:23 -04:00
|
|
|
min: 1
|
2013-11-06 15:47:26 -05:00
|
|
|
default:
|
|
|
|
test: 5
|
|
|
|
default: 10
|
|
|
|
max_post_length:
|
|
|
|
client: true
|
2014-07-24 14:27:34 -04:00
|
|
|
default: 32000
|
2014-03-21 21:14:35 -04:00
|
|
|
body_min_entropy: 7
|
2013-11-06 15:47:26 -05:00
|
|
|
min_topic_title_length:
|
|
|
|
client: true
|
|
|
|
default: 15
|
|
|
|
max_topic_title_length:
|
|
|
|
client: true
|
|
|
|
default: 255
|
2014-03-21 21:14:35 -04:00
|
|
|
title_min_entropy: 10
|
2013-11-13 14:02:47 -05:00
|
|
|
title_prettify: true
|
|
|
|
title_fancy_entities: true
|
2013-11-06 15:47:26 -05:00
|
|
|
min_private_message_title_length:
|
|
|
|
client: true
|
|
|
|
default: 2
|
|
|
|
allow_uncategorized_topics:
|
|
|
|
client: true
|
|
|
|
default: true
|
2014-02-21 00:52:11 -05:00
|
|
|
refresh: true
|
2014-06-25 15:21:29 -04:00
|
|
|
uncategorized_description: "Topics that don't need a category, or don't fit into any other existing category."
|
2013-11-13 14:02:47 -05:00
|
|
|
allow_duplicate_topic_titles: false
|
|
|
|
min_title_similar_length:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: 10
|
|
|
|
min_body_similar_length:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: 15
|
|
|
|
enable_private_messages: true
|
|
|
|
ninja_edit_window: 300
|
2014-08-28 18:47:38 -04:00
|
|
|
post_edit_time_limit: 262800
|
2013-11-13 14:02:47 -05:00
|
|
|
edit_history_visible_to_public:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
|
|
|
default: true
|
2013-11-13 14:02:47 -05:00
|
|
|
delete_removed_posts_after:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: 24
|
2014-10-06 16:29:20 -04:00
|
|
|
min: 0
|
2013-11-13 14:02:47 -05:00
|
|
|
traditional_markdown_linebreaks:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: false
|
|
|
|
suppress_reply_directly_below:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
|
|
|
default: true
|
2013-11-13 14:02:47 -05:00
|
|
|
suppress_reply_directly_above:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: true
|
2014-07-29 20:55:49 -04:00
|
|
|
suppress_reply_when_quoting:
|
|
|
|
default: true
|
2013-11-13 14:02:47 -05:00
|
|
|
post_undo_action_window_mins: 10
|
|
|
|
max_mentions_per_post: 10
|
2013-12-19 13:45:55 -05:00
|
|
|
newuser_max_replies_per_topic: 3
|
2013-11-13 14:02:47 -05:00
|
|
|
newuser_max_mentions_per_post: 2
|
|
|
|
max_word_length: 30
|
|
|
|
newuser_max_links: 2
|
|
|
|
newuser_max_images:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: 0
|
|
|
|
newuser_max_attachments:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: 0
|
|
|
|
uncategorized_category_id:
|
|
|
|
default: -1
|
|
|
|
hidden: true
|
|
|
|
post_excerpt_maxlength: 300
|
|
|
|
display_name_on_posts:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
|
|
|
default: false
|
2013-12-05 17:03:31 -05:00
|
|
|
short_progress_text_threshold:
|
|
|
|
client: true
|
2014-07-04 05:44:39 -04:00
|
|
|
default: 10000
|
2013-12-16 20:08:29 -05:00
|
|
|
default_code_lang:
|
|
|
|
client: true
|
|
|
|
default: "lang-auto"
|
2014-03-12 10:44:08 -04:00
|
|
|
warn_reviving_old_topic_age: 180
|
2014-03-31 03:44:35 -04:00
|
|
|
autohighlight_all_code:
|
|
|
|
client: true
|
|
|
|
default: false
|
2014-09-25 13:51:00 -04:00
|
|
|
delete_old_hidden_posts: true
|
2014-10-02 13:58:36 -04:00
|
|
|
censored_words:
|
|
|
|
client: true
|
|
|
|
default: ''
|
|
|
|
refresh: true
|
|
|
|
type: list
|
2013-11-13 14:02:47 -05:00
|
|
|
|
|
|
|
email:
|
|
|
|
email_time_window_mins: 10
|
|
|
|
email_posts_context: 5
|
2014-02-13 16:11:01 -05:00
|
|
|
digest_min_excerpt_length: 100
|
2014-04-21 14:44:00 -04:00
|
|
|
digest_topics: 20
|
2013-11-13 14:02:47 -05:00
|
|
|
default_digest_email_frequency:
|
|
|
|
default: 7
|
|
|
|
enum: 'DigestEmailSiteSetting'
|
|
|
|
email_custom_headers: 'Auto-Submitted: auto-generated'
|
2014-10-06 15:31:17 -04:00
|
|
|
email_subject: '[%{site_name}] %{optional_pm}%{optional_cat}%{topic_title}'
|
2013-11-13 14:02:47 -05:00
|
|
|
reply_by_email_enabled: false
|
|
|
|
reply_by_email_address: ''
|
2014-08-26 19:52:35 -04:00
|
|
|
pop3_polling_enabled: false
|
2014-08-26 20:00:27 -04:00
|
|
|
pop3_polling_ssl: true
|
2014-08-26 19:52:35 -04:00
|
|
|
pop3_polling_period_mins: 5
|
|
|
|
pop3_polling_host: ''
|
|
|
|
pop3_polling_port: 995
|
|
|
|
pop3_polling_username: ''
|
|
|
|
pop3_polling_password: ''
|
2014-02-27 07:44:21 -05:00
|
|
|
email_in:
|
|
|
|
default: false
|
|
|
|
client: true
|
2014-02-24 11:36:53 -05:00
|
|
|
email_in_min_trust:
|
2014-07-11 15:35:17 -04:00
|
|
|
default: 2
|
|
|
|
enum: 'TrustLevelSetting'
|
2014-03-26 18:06:00 -04:00
|
|
|
email_prefix: ''
|
2014-07-09 16:44:08 -04:00
|
|
|
email_site_title: ''
|
2014-08-23 05:07:37 -04:00
|
|
|
disable_emails: false
|
2014-09-13 01:26:31 -04:00
|
|
|
strip_images_from_short_emails: true
|
|
|
|
short_email_length: 2800
|
2013-11-13 14:02:47 -05:00
|
|
|
|
|
|
|
files:
|
2013-11-06 15:47:26 -05:00
|
|
|
max_image_size_kb:
|
|
|
|
client: true
|
2014-07-16 18:39:17 -04:00
|
|
|
default: 3072
|
2013-11-06 15:47:26 -05:00
|
|
|
max_attachment_size_kb:
|
|
|
|
client: true
|
|
|
|
default: 1024
|
|
|
|
authorized_extensions:
|
|
|
|
client: true
|
2014-04-29 13:12:35 -04:00
|
|
|
default: 'jpg|jpeg|png|gif'
|
2014-02-21 00:52:11 -05:00
|
|
|
refresh: true
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2013-11-06 15:47:26 -05:00
|
|
|
crawl_images:
|
|
|
|
default:
|
|
|
|
test: false
|
|
|
|
default: true
|
|
|
|
max_image_width:
|
|
|
|
client: true
|
|
|
|
default: 690
|
|
|
|
max_image_height:
|
|
|
|
client: true
|
|
|
|
default: 500
|
2014-03-21 21:14:35 -04:00
|
|
|
download_remote_images_to_local:
|
|
|
|
default:
|
|
|
|
test: false
|
|
|
|
default: true
|
|
|
|
download_remote_images_threshold: 20
|
2014-04-21 16:59:53 -04:00
|
|
|
disabled_image_download_domains:
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2014-04-21 16:59:53 -04:00
|
|
|
default: ''
|
2013-11-06 15:47:26 -05:00
|
|
|
create_thumbnails: true
|
2013-11-13 14:02:47 -05:00
|
|
|
clean_up_uploads: false
|
2013-11-27 16:01:41 -05:00
|
|
|
clean_orphan_uploads_grace_period_hours: 1
|
|
|
|
purge_deleted_uploads_grace_period_days: 30
|
2014-09-09 12:40:11 -04:00
|
|
|
prevent_anons_from_downloading_files:
|
|
|
|
default: false
|
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
enable_s3_uploads: false
|
2014-07-05 15:33:39 -04:00
|
|
|
s3_use_iam_profile: false
|
2013-11-13 14:02:47 -05:00
|
|
|
s3_access_key_id: ''
|
|
|
|
s3_secret_access_key: ''
|
|
|
|
s3_region:
|
|
|
|
default: ''
|
|
|
|
enum: 'S3RegionSiteSetting'
|
2014-06-20 13:02:04 -04:00
|
|
|
s3_upload_bucket:
|
|
|
|
default: ''
|
|
|
|
regex: "^[^\\.]*$"
|
2014-02-28 15:12:51 -05:00
|
|
|
allow_profile_backgrounds:
|
|
|
|
client: true
|
|
|
|
default: true
|
2014-05-22 03:37:02 -04:00
|
|
|
automatically_download_gravatars: true
|
2013-11-13 14:02:47 -05:00
|
|
|
allow_uploaded_avatars:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: true
|
|
|
|
allow_animated_avatars:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: false
|
|
|
|
|
|
|
|
trust:
|
2014-07-11 15:35:17 -04:00
|
|
|
default_trust_level:
|
|
|
|
default: 0
|
|
|
|
enum: 'TrustLevelSetting'
|
|
|
|
default_invitee_trust_level:
|
|
|
|
default: 1
|
|
|
|
enum: 'TrustLevelSetting'
|
2014-03-21 21:14:35 -04:00
|
|
|
min_trust_to_create_topic:
|
|
|
|
default: 0
|
2014-07-11 15:35:17 -04:00
|
|
|
enum: 'TrustLevelSetting'
|
2014-05-13 08:53:11 -04:00
|
|
|
min_trust_to_edit_wiki_post:
|
2014-06-04 01:24:09 -04:00
|
|
|
default: 1
|
2014-07-11 15:35:17 -04:00
|
|
|
enum: 'TrustLevelSetting'
|
2014-09-04 16:16:46 -04:00
|
|
|
tl1_requires_topics_entered: 5
|
|
|
|
tl1_requires_read_posts:
|
2014-07-25 15:58:16 -04:00
|
|
|
default: 30
|
|
|
|
client: true
|
2014-09-04 16:16:46 -04:00
|
|
|
tl1_requires_time_spent_mins: 10
|
|
|
|
tl2_requires_topics_entered: 20
|
|
|
|
tl2_requires_read_posts: 100
|
|
|
|
tl2_requires_time_spent_mins: 60
|
|
|
|
tl2_requires_days_visited: 15
|
|
|
|
tl2_requires_likes_received: 1
|
|
|
|
tl2_requires_likes_given: 1
|
|
|
|
tl2_requires_topic_reply_count: 3
|
|
|
|
tl3_requires_days_visited:
|
2014-06-27 12:26:03 -04:00
|
|
|
default: 50
|
2014-07-28 12:33:48 -04:00
|
|
|
min: 0
|
2014-06-27 12:26:03 -04:00
|
|
|
max: 100
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_requires_topics_replied_to:
|
2014-06-27 12:26:03 -04:00
|
|
|
default: 10
|
|
|
|
min: 0
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_requires_topics_viewed:
|
2014-06-27 12:26:03 -04:00
|
|
|
default: 25
|
|
|
|
min: 0
|
|
|
|
max: 100
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_requires_posts_read:
|
2014-06-27 12:26:03 -04:00
|
|
|
default: 25
|
|
|
|
min: 0
|
|
|
|
max: 100
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_requires_topics_viewed_all_time:
|
2014-07-01 13:34:48 -04:00
|
|
|
default: 200
|
|
|
|
min: 0
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_requires_posts_read_all_time:
|
2014-07-01 13:34:48 -04:00
|
|
|
default: 500
|
|
|
|
min: 0
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_requires_max_flagged:
|
2014-06-27 12:26:03 -04:00
|
|
|
default: 5
|
|
|
|
min: 0
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_promotion_min_duration:
|
2014-07-08 17:39:36 -04:00
|
|
|
default: 14
|
|
|
|
min: 0
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_requires_likes_given:
|
2014-08-22 17:33:05 -04:00
|
|
|
default: 30
|
|
|
|
min: 0
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_requires_likes_received:
|
2014-08-22 17:33:05 -04:00
|
|
|
default: 20
|
|
|
|
min: 0
|
2014-09-04 16:16:46 -04:00
|
|
|
tl3_links_no_follow: false
|
2013-11-13 14:02:47 -05:00
|
|
|
|
2013-11-14 15:05:48 -05:00
|
|
|
security:
|
2014-01-08 18:51:38 -05:00
|
|
|
use_https: false
|
2014-03-07 18:47:23 -05:00
|
|
|
enable_escaped_fragments: true
|
2013-11-14 15:05:48 -05:00
|
|
|
allow_index_in_robots_txt: true
|
2014-03-07 18:47:23 -05:00
|
|
|
enable_noscript_support: true
|
2014-04-15 02:42:24 -04:00
|
|
|
allow_moderators_to_create_categories: false
|
2013-11-14 15:05:48 -05:00
|
|
|
|
2014-04-09 16:57:45 -04:00
|
|
|
onebox:
|
|
|
|
enable_flash_video_onebox: false
|
|
|
|
post_onebox_maxlength: 500
|
|
|
|
onebox_domains_whitelist:
|
|
|
|
default: ''
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2014-04-09 16:57:45 -04:00
|
|
|
|
2013-11-13 14:02:47 -05:00
|
|
|
spam:
|
2014-03-21 21:14:35 -04:00
|
|
|
add_rel_nofollow_to_user_content: true
|
2014-03-30 01:32:33 -04:00
|
|
|
exclude_rel_nofollow_domains:
|
|
|
|
default: ''
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2013-11-13 14:02:47 -05:00
|
|
|
flags_required_to_hide_post: 3
|
|
|
|
cooldown_minutes_after_hiding_posts: 10
|
|
|
|
num_flags_to_block_new_user: 3
|
|
|
|
num_users_to_block_new_user: 3
|
|
|
|
notify_mods_when_user_blocked: false
|
|
|
|
flag_sockpuppets: true
|
|
|
|
newuser_spam_host_threshold: 3
|
2014-03-30 01:32:33 -04:00
|
|
|
white_listed_spam_host_domains:
|
|
|
|
default: ''
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2014-07-11 20:19:45 -04:00
|
|
|
levenshtein_distance_spammer_emails:
|
|
|
|
default: 2
|
|
|
|
min: 0
|
|
|
|
max: 3
|
2013-11-13 14:02:47 -05:00
|
|
|
|
|
|
|
rate_limits:
|
2013-11-06 15:47:26 -05:00
|
|
|
unique_posts_mins:
|
|
|
|
default:
|
|
|
|
test: 0
|
|
|
|
default: 5
|
2014-07-14 03:03:00 -04:00
|
|
|
rate_limit_create_topic: 15
|
2013-11-06 15:47:26 -05:00
|
|
|
rate_limit_create_post: 5
|
2014-07-14 16:58:10 -04:00
|
|
|
rate_limit_new_user_create_topic: 60
|
|
|
|
rate_limit_new_user_create_post: 30
|
2013-11-06 15:47:26 -05:00
|
|
|
max_topics_per_day: 20
|
|
|
|
max_private_messages_per_day: 20
|
|
|
|
max_likes_per_day: 50
|
|
|
|
max_bookmarks_per_day: 20
|
|
|
|
max_flags_per_day: 20
|
|
|
|
max_edits_per_day: 30
|
2014-01-09 16:22:54 -05:00
|
|
|
max_stars_per_day: 20
|
2014-03-21 21:14:35 -04:00
|
|
|
max_topics_in_first_day: 5
|
|
|
|
max_replies_in_first_day: 10
|
2013-11-13 14:02:47 -05:00
|
|
|
|
2013-11-14 14:46:17 -05:00
|
|
|
developer:
|
2014-10-03 01:53:01 -04:00
|
|
|
force_hostname:
|
|
|
|
hidden:
|
|
|
|
development: false
|
|
|
|
default: true
|
|
|
|
default: ''
|
2013-11-14 14:46:17 -05:00
|
|
|
port:
|
2014-10-03 01:53:01 -04:00
|
|
|
hidden:
|
|
|
|
development: false
|
|
|
|
default: true
|
2013-11-14 14:46:17 -05:00
|
|
|
default:
|
|
|
|
development: 3000
|
|
|
|
default: ''
|
|
|
|
queue_jobs:
|
2014-10-03 01:53:01 -04:00
|
|
|
hidden:
|
|
|
|
development: false
|
|
|
|
default: true
|
2013-11-14 14:46:17 -05:00
|
|
|
default:
|
|
|
|
test: false
|
|
|
|
default: true
|
2014-03-21 21:14:35 -04:00
|
|
|
enable_long_polling:
|
|
|
|
client: true
|
|
|
|
default: true
|
|
|
|
long_polling_interval: 15000
|
|
|
|
polling_interval:
|
|
|
|
client: true
|
|
|
|
default: 3000
|
|
|
|
anon_polling_interval:
|
|
|
|
client: true
|
|
|
|
default: 30000
|
|
|
|
flush_timings_secs:
|
|
|
|
client: true
|
|
|
|
default: 5
|
|
|
|
active_user_rate_limit_secs: 60
|
2014-08-27 00:12:11 -04:00
|
|
|
verbose_localization:
|
|
|
|
default: false
|
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
|
2013-12-31 14:37:43 -05:00
|
|
|
embedding:
|
|
|
|
embeddable_host: ''
|
|
|
|
feed_polling_enabled: false
|
|
|
|
feed_polling_url: ''
|
2014-06-11 14:42:41 -04:00
|
|
|
embed_by_username:
|
|
|
|
default: ''
|
2014-06-12 18:03:03 -04:00
|
|
|
type: username
|
2014-04-24 12:48:45 -04:00
|
|
|
embed_username_key_from_feed: ''
|
2014-01-24 00:25:48 -05:00
|
|
|
embed_category: ''
|
2014-01-03 12:52:24 -05:00
|
|
|
embed_post_limit: 100
|
2014-03-18 18:02:33 -04:00
|
|
|
embed_truncate: false
|
2014-04-15 00:06:51 -04:00
|
|
|
embed_whitelist_selector: ''
|
|
|
|
embed_blacklist_selector: ''
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2014-02-07 16:04:00 -05:00
|
|
|
legal:
|
2013-11-13 14:02:47 -05:00
|
|
|
tos_url:
|
|
|
|
client: true
|
|
|
|
default: ''
|
2014-02-07 16:04:00 -05:00
|
|
|
privacy_policy_url:
|
2013-11-13 14:02:47 -05:00
|
|
|
client: true
|
|
|
|
default: ''
|
2014-03-21 21:14:35 -04:00
|
|
|
faq_url:
|
|
|
|
client: true
|
|
|
|
default: ''
|
2014-02-07 16:04:00 -05:00
|
|
|
|
2014-03-11 17:28:12 -04:00
|
|
|
backups:
|
|
|
|
allow_restore:
|
2014-08-28 17:02:26 -04:00
|
|
|
client: false
|
2014-03-11 17:28:12 -04:00
|
|
|
default: false
|
|
|
|
maximum_backups:
|
|
|
|
client: true
|
|
|
|
default: 7
|
2014-03-12 13:26:51 -04:00
|
|
|
backup_daily:
|
|
|
|
client: false
|
|
|
|
default: false
|
2014-03-12 16:23:47 -04:00
|
|
|
enable_s3_backups:
|
|
|
|
client: false
|
|
|
|
default: false
|
|
|
|
s3_backup_bucket:
|
|
|
|
client: false
|
2014-06-20 13:02:04 -04:00
|
|
|
default: ''
|
|
|
|
regex: "^[^\\.]*$"
|
2014-03-11 17:28:12 -04:00
|
|
|
|
2014-02-07 16:04:00 -05:00
|
|
|
uncategorized:
|
2014-03-21 21:14:35 -04:00
|
|
|
version_checks:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2014-03-21 21:14:35 -04:00
|
|
|
default: true
|
|
|
|
new_version_emails: true
|
|
|
|
send_welcome_message: true
|
2013-11-14 15:05:48 -05:00
|
|
|
|
2014-03-21 21:14:35 -04:00
|
|
|
suppress_uncategorized_badge:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
|
|
|
default: true
|
2014-03-21 21:14:35 -04:00
|
|
|
|
|
|
|
# Search
|
2013-11-13 14:02:47 -05:00
|
|
|
min_search_term_length:
|
2013-11-06 15:47:26 -05:00
|
|
|
client: true
|
2013-11-13 14:02:47 -05:00
|
|
|
default: 3
|
2014-03-21 21:14:35 -04:00
|
|
|
max_similar_results: 7
|
|
|
|
minimum_topics_similar: 50
|
|
|
|
|
2013-11-13 14:02:47 -05:00
|
|
|
new_topic_duration_minutes: 2880
|
|
|
|
previous_visit_timeout_hours: 1
|
|
|
|
staff_like_weight: 3
|
2014-03-21 21:14:35 -04:00
|
|
|
|
|
|
|
# Summary mode
|
2013-11-18 12:48:26 -05:00
|
|
|
summary_score_threshold: 15
|
|
|
|
summary_posts_required: 50
|
|
|
|
summary_likes_required: 1
|
|
|
|
summary_percent_filter: 20
|
2014-03-21 21:14:35 -04:00
|
|
|
|
|
|
|
# View heat thresholds
|
2013-11-06 15:47:26 -05:00
|
|
|
topic_views_heat_low:
|
|
|
|
client: true
|
|
|
|
default: 1000
|
|
|
|
topic_views_heat_medium:
|
|
|
|
client: true
|
|
|
|
default: 2000
|
|
|
|
topic_views_heat_high:
|
|
|
|
client: true
|
|
|
|
default: 5000
|
2014-03-21 21:14:35 -04:00
|
|
|
|
2014-08-15 12:02:29 -04:00
|
|
|
# Post/Like heat thresholds
|
|
|
|
topic_post_like_heat_low:
|
|
|
|
client: true
|
|
|
|
default: 0.5
|
|
|
|
topic_post_like_heat_medium:
|
|
|
|
client: true
|
|
|
|
default: 1.0
|
|
|
|
topic_post_like_heat_high:
|
|
|
|
client: true
|
|
|
|
default: 2.0
|
|
|
|
|
2014-08-15 12:22:06 -04:00
|
|
|
# History edit heat thresholds
|
|
|
|
history_hours_low:
|
|
|
|
client: true
|
|
|
|
default: 12
|
|
|
|
history_hours_medium:
|
|
|
|
client: true
|
|
|
|
default: 24
|
|
|
|
history_hours_high:
|
|
|
|
client: true
|
|
|
|
default: 48
|
|
|
|
|
2014-08-15 12:09:31 -04:00
|
|
|
# Cold map thresholds
|
|
|
|
cold_age_days_low:
|
|
|
|
client: true
|
|
|
|
default: 14
|
|
|
|
cold_age_days_medium:
|
|
|
|
client: true
|
|
|
|
default: 60
|
|
|
|
cold_age_days_high:
|
|
|
|
client: true
|
|
|
|
default: 120
|
|
|
|
|
2014-03-21 21:14:35 -04:00
|
|
|
# Warnings
|
|
|
|
educate_until_posts: 2
|
2013-11-06 15:47:26 -05:00
|
|
|
sequential_replies_threshold: 2
|
|
|
|
dominating_topic_minimum_percent: 20
|
2014-03-21 21:14:35 -04:00
|
|
|
|
2014-03-24 01:51:48 -04:00
|
|
|
global_notice:
|
|
|
|
default: ""
|
|
|
|
client: true
|
2014-03-24 03:03:39 -04:00
|
|
|
has_login_hint:
|
|
|
|
default: false
|
|
|
|
hidden: true
|
2014-03-24 01:51:48 -04:00
|
|
|
|
2014-03-21 21:14:35 -04:00
|
|
|
# Category IDs
|
2014-01-20 15:49:43 -05:00
|
|
|
lounge_category_id:
|
|
|
|
default: -1
|
|
|
|
hidden: true
|
2014-01-22 00:05:46 -05:00
|
|
|
meta_category_id:
|
|
|
|
default: -1
|
|
|
|
hidden: true
|
2014-02-27 17:38:01 -05:00
|
|
|
staff_category_id:
|
|
|
|
default: -1
|
|
|
|
hidden: true
|
2013-11-13 14:02:47 -05:00
|
|
|
|
2014-04-03 14:34:21 -04:00
|
|
|
notify_about_flags_after: 48
|
2014-05-14 14:38:04 -04:00
|
|
|
|
|
|
|
public_user_custom_fields:
|
2014-06-18 11:15:29 -04:00
|
|
|
type: list
|
2014-05-14 14:38:04 -04:00
|
|
|
default: ''
|
2014-05-18 18:46:09 -04:00
|
|
|
|
2014-07-16 18:16:51 -04:00
|
|
|
enable_cdn_js_debugging: false
|
2014-05-22 03:37:02 -04:00
|
|
|
|
2014-05-26 11:13:04 -04:00
|
|
|
show_create_topics_notice:
|
|
|
|
client: true
|
|
|
|
default: true
|
|
|
|
|
2014-05-22 03:37:02 -04:00
|
|
|
enable_system_avatars:
|
|
|
|
hidden: true
|
|
|
|
default: true
|
2014-06-11 11:14:00 -04:00
|
|
|
|
|
|
|
disable_edit_notifications: false
|
2014-08-13 15:11:19 -04:00
|
|
|
purge_inactive_users_grace_period_days: 7
|
2014-07-24 14:27:34 -04:00
|
|
|
|
|
|
|
company_full_name: 'My Unconfigured Forum Ltd.'
|
|
|
|
company_short_name: 'Unconfigured Forum'
|
|
|
|
company_domain: 'www.example.com'
|
|
|
|
|
2014-08-06 21:07:30 -04:00
|
|
|
vacuum_db_days: 90
|
|
|
|
last_vacuum:
|
|
|
|
default: 0
|
|
|
|
hidden: true
|
|
|
|
|
2014-07-24 14:27:34 -04:00
|
|
|
tos_topic_id:
|
|
|
|
default: -1
|
|
|
|
hidden: true
|
|
|
|
guidelines_topic_id:
|
|
|
|
default: -1
|
|
|
|
hidden: true
|
|
|
|
privacy_topic_id:
|
|
|
|
default: -1
|
|
|
|
hidden: true
|