-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.inc.php
More file actions
63 lines (48 loc) · 2.25 KB
/
Copy pathconfig.inc.php
File metadata and controls
63 lines (48 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php /* $Id: config.inc.php,v 1.7 2004/07/25 18:15:37 gregorerhardt Exp $ */
/* Allow Ticket Relinking
** Having this option turned on will allow you
** to relink tickets to an arbitrary parent in Ticketsmith.
** Could be useful for email-generated tickets.
*/
$CONFIG["link_tickets_kludge"] = false;
// reply-to address for staff followups
// i.e. the address the gateway receives
if ( ! isset($dPconfig['site_domain']))
$dPconfig['site_domain'] = "dotproject.net";
$CONFIG["reply_to"] = "support@" . $dPconfig['site_domain'];
// If you want to hide real addresses behind a bogus
// generic email, uncomment the following:
// $CONFIG["reply_name"] = "Help Desk";
// relative path of the program installation
// i.e. the part of the URL after the server name
// use "" if at the top-level of a server
$CONFIG["relative_path"] = "/ticketsmith";
// page color preferences
$CONFIG["background_color"] = "#ffffff";
$CONFIG["heading_color"] = "#cc0000";
$CONFIG["ticket_color"] = "#ffffee";
// date format
$CONFIG["date_format"] = "D M j Y g:ia";
// visual warnings for old tickets
$CONFIG["warning_active"]= 1; // 0 = inactive, 1 = active
$CONFIG["warning_color"] = "#ff0000";
$CONFIG["warning_age"] = "0.5"; // in hours
// priority names (low to high)
$CONFIG["priority_names"] = array($AppUI->_("Low"),$AppUI->_("Normal"),$AppUI->_("High"),$AppUI->_("Highest"),$AppUI->_("911"));
// priority colors (low to high)
$CONFIG["priority_colors"] = array("#006600","#000000","#ff0000","#ff0000","#ff0000");
$CONFIG["type_names"] = array("Open" => $AppUI->_("Open"), "Closed" => $AppUI->_("Closed"), "Deleted" => $AppUI->_("Deleted"));
// number of tickets to see at once
$CONFIG["view_rows"] = 40;
// wordwrap badly-formatted messages (PHP >= 4.0.2 only)
$CONFIG["wordwrap"] = 1; // 0 = inactive, 1 = active
// column to order messages by
$CONFIG["order_by"] = "timestamp"; // "author", "subject", "timestamp", "activity", "type", "priority", "assignment"
// order in which to display messages
$CONFIG["message_order"] = "ASC"; // "ASC" or "DESC"
// order in which to display followups
$CONFIG["followup_order"] = "ASC"; // "ASC" or "DESC"
// go to parent or latest followup from index?
// note that latest followup is slightly slower
$CONFIG["index_link"] = "parent"; // "parent" or "latest"
?>