/** * 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 = '[email protected]'; /** * 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;
/** * 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;