1<?php
2/**
3 */
4
5$conf['bugzilla_login'] = '';
6$conf['bugzilla_password'] = '';
7$conf['bugzilla_baseurl'] = 'https://your.bugzilla.org/';
8$conf['tree_depth'] = 3;
9$conf['link_default_extras'] = 'dependencies,deadline';
10$conf['tree_default_extras'] = 'deadline';
11$conf['list_default_extras'] = 'dependencies,deadline';
12$conf['severity_threshold_red'] = 'blocker';
13$conf['severity_threshold_orange'] = 'major';
14$conf['priority_threshold_red'] = 'P1';
15$conf['priority_threshold_orange'] = 'P2';
16$conf['deadline_threshold_days_red'] = 3;
17$conf['deadline_threshold_days_orange'] = 7;
18$conf['color_new'] = 'lightblue';
19$conf['color_assigned'] = 'darkblue';
20$conf['color_reopened'] = 'orange';
21$conf['color_resolved_fixed'] = 'green';
22$conf['color_resolved_invalid'] = 'gray';
23$conf['color_resolved_wontfix'] = 'gray';
24$conf['color_resolved_duplicate'] = 'gray';
25$conf['color_resolved_worksforme'] = 'gray';
26$conf['color_resolved_moved'] = 'gray';
27