{{htmlmetatags> metatag-description=(맨티스, Mantis, 이슈 트래커, Issue Tracker, 플러그인, 커스터마이징, 오픈 소스, Open Source) metatag-og:description=(맨티스, Mantis, 이슈 트래커, Issue Tracker, 플러그인, 커스터마이징, 오픈 소스, Open Source) }} ====== Mantis ====== 본 문서는 "MantisBT 2.27.0" ((https://sourceforge.net/projects/mantisbt/files/mantis-stable/2.27.0/mantisbt-2.27.0.zip/download)) 버전을 기준으로 작성되었습니다.\\ - [[#플러그인]]\\ - [[#커스터마이징]] ===== 플러그인 ===== * MantisBT Plugins: https://www.mantisbt.org/wiki/doku.php/mantisbt:plugins:start * MantisBT Community Plugins: https://github.com/mantisbt-plugins ===== 커스터마이징 ===== ==== 사용자 등록 허용 ==== /** * 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; ==== 사용자 등록 시 관리자가 비밀번호 설정 ==== /** * 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; ==== 이메일 정보 ==== /** * The sender's address for email notifications. * * Part of 'From: ' header in emails. * * @global string $g_from_email */ $g_from_email = 'noreply@jobdeveloper.co.kr'; /** * The sender name's for email notifications. * * Part of 'From: ' header in emails. * * @global string $g_from_name */ $g_from_name = '이슈 트래커'; ==== 브라우저 타이틀 ==== /** * Browser window title. * * @global string $g_window_title */ $g_window_title = '잡개발자 리토의 잡이슈'; ==== 실명 표시 ==== /** * 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; ==== 재발생 가능성 설정 (N/A) ==== /** * Default bug reproducibility when reporting a new bug. * * @global int $g_default_bug_reproducibility */ $g_default_bug_reproducibility = REPRODUCIBILITY_NOTAPPLICABLE; ==== 첨부파일 저장방식 ==== /** * 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; ==== 첨부파일 저장위치 ==== /** * 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'; ==== 첨부파일 용량제한 ==== /** * 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;