사용자 도구

사이트 도구


기술문서:오픈소스:mantis

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
기술문서:오픈소스:mantis [2025/01/10 15:47]
carlito76 만듦
기술문서:오픈소스:mantis [2026/02/03 18:49] (현재)
carlito76
줄 1: 줄 1:
 +{{htmlmetatags>
 +metatag-description=(맨티스, Mantis, 이슈 트래커, Issue Tracker, 플러그인, 커스터마이징, 오픈 소스, Open Source)
 +metatag-og:description=(맨티스, Mantis, 이슈 트래커, Issue Tracker, 플러그인, 커스터마이징, 오픈 소스, Open Source)
 +}}
 +
 ====== Mantis ====== ====== Mantis ======
-FIXME+ 
 +<note tip> 
 +본 문서는 "MantisBT 2.27.0" ((https://sourceforge.net/projects/mantisbt/files/mantis-stable/2.27.0/mantisbt-2.27.0.zip/download)) 버전을 기준으로 작성되었습니다.\\ 
 +- [[#플러그인]]\\ 
 +- [[#커스터마이징]] 
 +</note> 
 + 
 +===== 플러그인 ===== 
 +  * MantisBT Plugins: https://www.mantisbt.org/wiki/doku.php/mantisbt:plugins:start 
 +  * MantisBT Community Plugins: https://github.com/mantisbt-plugins 
 + 
 +===== 커스터마이징 ===== 
 +==== 사용자 등록 허용 ==== 
 +<sxh php; gutter: true; first-line: 353; highlight: [362]; title: config_defaults_inc.php;> 
 +/** 
 + * Allow users to signup for their own accounts. 
 + * 
 + * If ON, then $g_send_reset_password must be ON as well, and mail settings 
 + * must be correctly configured. 
 + * 
 + * @see $g_send_reset_password 
 + * @global int $g_allow_signup 
 + */ 
 +$g_allow_signup = OFF; 
 +</sxh> 
 + 
 +==== 사용자 등록 시 관리자가 비밀번호 설정 ==== 
 +<sxh php; gutter: true; first-line: 384; highlight: [395]; title: config_defaults_inc.php;> 
 +/** 
 + * Send Password reset emails. 
 + * 
 + * If ON, users will be sent their password when their account is created 
 + * or password reset (this requires mail settings to be correctly configured). 
 + * 
 + * If OFF, then the Administrator will have to provide a password when 
 + * creating new accounts, and the password will be set to blank when reset. 
 + * 
 + * @global int $g_send_reset_password 
 + */ 
 +$g_send_reset_password = OFF; 
 +</sxh> 
 + 
 +==== 이메일 정보 ==== 
 +<sxh php; gutter: true; first-line: 468; highlight: [475, 484]; title: config_defaults_inc.php;> 
 +/** 
 + * The sender's address for email notifications. 
 + * 
 + * Part of 'From: ' header in emails. 
 + * 
 + * @global string $g_from_email 
 + */ 
 +$g_from_email = '[email protected]'; 
 + 
 +/** 
 + * The sender name's for email notifications. 
 + * 
 + * Part of 'From: ' header in emails. 
 + * 
 + * @global string $g_from_name 
 + */ 
 +$g_from_name = '이슈 트래커'; 
 +</sxh> 
 + 
 +==== 브라우저 타이틀 ==== 
 +<sxh php; gutter: true; first-line: 1217; highlight: [1222]; title: config_defaults_inc.php;> 
 +/** 
 + * Browser window title. 
 + * 
 + * @global string $g_window_title 
 + */ 
 +$g_window_title = '잡개발자 리토의 잡이슈'; 
 +</sxh> 
 + 
 +==== 실명 표시 ==== 
 +<sxh php; gutter: true; first-line: 1447; highlight: [1454]; title: config_defaults_inc.php;> 
 +/** 
 + * Show users with their real name or not. 
 + * 
 + * @see $g_sort_by_last_name 
 + * @see $g_show_user_realname_threshold 
 + * @global int $g_show_realname 
 + */ 
 +$g_show_realname = ON; 
 +</sxh> 
 + 
 +==== 재발생 가능성 설정 (N/A) ==== 
 +<sxh php; gutter: true; first-line: 1727; highlight: [1732]; title: config_defaults_inc.php;> 
 +/** 
 + * Default bug reproducibility when reporting a new bug. 
 + * 
 + * @global int $g_default_bug_reproducibility 
 + */ 
 +$g_default_bug_reproducibility = REPRODUCIBILITY_NOTAPPLICABLE; 
 +</sxh> 
 + 
 +==== 첨부파일 저장방식 ==== 
 +<sxh php; gutter: true; first-line: 2197; highlight: [2206]; title: config_defaults_inc.php;> 
 +/** 
 + * Upload destination. 
 + * 
 + * Specify actual location in project settings: DISK or DATABASE. 
 + * 
 + * NOTE: FTP is now deprecated and will map to DISK. 
 + * 
 + * @global int $g_file_upload_method 
 + */ 
 +$g_file_upload_method = DISK; 
 +</sxh> 
 + 
 +==== 첨부파일 저장위치 ==== 
 +<sxh php; gutter: true; first-line: 2288; highlight: [2295]; title: config_defaults_inc.php;> 
 +/** 
 + * Absolute path to the default upload folder. 
 + * 
 + * Requires trailing / or \. 
 + * 
 + * @global string $g_absolute_path_default_upload_folder 
 + */ 
 +$g_absolute_path_default_upload_folder = '/upload'; 
 +</sxh> 
 + 
 +==== 첨부파일 용량제한 ==== 
 +<sxh php; gutter: true; first-line: 2786; highlight: [2794]; title: config_defaults_inc.php;> 
 +/** 
 + * Specifies the maximum size (in bytes) below which an attachment is 
 + * previewed in the bug view pages. 
 + * 
 + * To disable the previewing of attachments, set max size to 0. 
 + * 
 + * @global int $g_preview_attachments_inline_max_size 
 + */ 
 +$g_preview_attachments_inline_max_size = 5 * 1024 * 1024; 
 +</sxh>