You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings.yml 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. # Redmine - project management software
  2. # Copyright (C) 2006-2015 Jean-Philippe Lang
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; either version 2
  7. # of the License, or (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. # DO NOT MODIFY THIS FILE !!!
  18. # Settings can be defined through the application in Admin -> Settings
  19. app_title:
  20. default: Redmine
  21. app_subtitle:
  22. default: Project management
  23. welcome_text:
  24. default:
  25. login_required:
  26. default: 0
  27. self_registration:
  28. default: '2'
  29. lost_password:
  30. default: 1
  31. unsubscribe:
  32. default: 1
  33. password_min_length:
  34. format: int
  35. default: 8
  36. # Maximum password age in days
  37. password_max_age:
  38. format: int
  39. default: 0
  40. # Maximum number of additional email addresses per user
  41. max_additional_emails:
  42. format: int
  43. default: 5
  44. # Maximum lifetime of user sessions in minutes
  45. session_lifetime:
  46. format: int
  47. default: 0
  48. # User session timeout in minutes
  49. session_timeout:
  50. format: int
  51. default: 0
  52. attachment_max_size:
  53. format: int
  54. default: 5120
  55. issues_export_limit:
  56. format: int
  57. default: 500
  58. activity_days_default:
  59. format: int
  60. default: 30
  61. per_page_options:
  62. default: '25,50,100'
  63. search_results_per_page:
  64. default: 10
  65. mail_from:
  66. default: redmine@example.net
  67. bcc_recipients:
  68. default: 1
  69. plain_text_mail:
  70. default: 0
  71. text_formatting:
  72. default: textile
  73. cache_formatted_text:
  74. default: 0
  75. wiki_compression:
  76. default: ""
  77. default_language:
  78. default: en
  79. force_default_language_for_anonymous:
  80. default: 0
  81. force_default_language_for_loggedin:
  82. default: 0
  83. host_name:
  84. default: localhost:3000
  85. protocol:
  86. default: http
  87. feeds_limit:
  88. format: int
  89. default: 15
  90. gantt_items_limit:
  91. format: int
  92. default: 500
  93. # Maximum size of files that can be displayed
  94. # inline through the file viewer (in KB)
  95. file_max_size_displayed:
  96. format: int
  97. default: 512
  98. diff_max_lines_displayed:
  99. format: int
  100. default: 1500
  101. enabled_scm:
  102. serialized: true
  103. default:
  104. - Subversion
  105. - Darcs
  106. - Mercurial
  107. - Cvs
  108. - Bazaar
  109. - Git
  110. autofetch_changesets:
  111. default: 1
  112. sys_api_enabled:
  113. default: 0
  114. sys_api_key:
  115. default: ''
  116. commit_cross_project_ref:
  117. default: 0
  118. commit_ref_keywords:
  119. default: 'refs,references,IssueID'
  120. commit_update_keywords:
  121. serialized: true
  122. default: []
  123. commit_logtime_enabled:
  124. default: 0
  125. commit_logtime_activity_id:
  126. format: int
  127. default: 0
  128. # autologin duration in days
  129. # 0 means autologin is disabled
  130. autologin:
  131. format: int
  132. default: 0
  133. # date format
  134. date_format:
  135. default: ''
  136. time_format:
  137. default: ''
  138. user_format:
  139. default: :firstname_lastname
  140. format: symbol
  141. cross_project_issue_relations:
  142. default: 0
  143. # Enables subtasks to be in other projects
  144. cross_project_subtasks:
  145. default: 'tree'
  146. parent_issue_dates:
  147. default: 'derived'
  148. parent_issue_priority:
  149. default: 'derived'
  150. parent_issue_done_ratio:
  151. default: 'derived'
  152. link_copied_issue:
  153. default: 'ask'
  154. issue_group_assignment:
  155. default: 0
  156. default_issue_start_date_to_creation_date:
  157. default: 1
  158. notified_events:
  159. serialized: true
  160. default:
  161. - issue_added
  162. - issue_updated
  163. mail_handler_body_delimiters:
  164. default: ''
  165. mail_handler_excluded_filenames:
  166. default: ''
  167. mail_handler_api_enabled:
  168. default: 0
  169. mail_handler_api_key:
  170. default:
  171. issue_list_default_columns:
  172. serialized: true
  173. default:
  174. - tracker
  175. - status
  176. - priority
  177. - subject
  178. - assigned_to
  179. - updated_on
  180. display_subprojects_issues:
  181. default: 1
  182. issue_done_ratio:
  183. default: 'issue_field'
  184. default_projects_public:
  185. default: 1
  186. default_projects_modules:
  187. serialized: true
  188. default:
  189. - issue_tracking
  190. - time_tracking
  191. - news
  192. - documents
  193. - files
  194. - wiki
  195. - repository
  196. - boards
  197. - calendar
  198. - gantt
  199. default_projects_tracker_ids:
  200. serialized: true
  201. default:
  202. # Role given to a non-admin user who creates a project
  203. new_project_user_role_id:
  204. format: int
  205. default: ''
  206. sequential_project_identifiers:
  207. default: 0
  208. # encodings used to convert repository files content to UTF-8
  209. # multiple values accepted, comma separated
  210. repositories_encodings:
  211. default: ''
  212. # encoding used to convert commit logs to UTF-8
  213. commit_logs_encoding:
  214. default: 'UTF-8'
  215. repository_log_display_limit:
  216. format: int
  217. default: 100
  218. ui_theme:
  219. default: ''
  220. emails_footer:
  221. default: |-
  222. You have received this notification because you have either subscribed to it, or are involved in it.
  223. To change your notification preferences, please click here: http://hostname/my/account
  224. gravatar_enabled:
  225. default: 0
  226. openid:
  227. default: 0
  228. gravatar_default:
  229. default: ''
  230. start_of_week:
  231. default: ''
  232. rest_api_enabled:
  233. default: 0
  234. jsonp_enabled:
  235. default: 0
  236. default_notification_option:
  237. default: 'only_my_events'
  238. emails_header:
  239. default: ''
  240. thumbnails_enabled:
  241. default: 0
  242. thumbnails_size:
  243. format: int
  244. default: 100
  245. non_working_week_days:
  246. serialized: true
  247. default:
  248. - '6'
  249. - '7'