-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
70 lines (48 loc) · 2.2 KB
/
README
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
64
65
66
67
68
69
NAME
RT-Extension-CreateByProblemType - Choose from Problem Types rather than
Queues for new tickets
SYNOPSIS
This extension modifies the "Create a ticket in..." drop-down on RT's
main page; instead of presenting a list of queue names, it instead
presents a list of problem types, and dispatches to the appropriate
queue.
It does this by inspecting the "Problem Type" custom field on each
queue, which should be of type "Select one value." For each queue, all
possible values for this custom field will be added to the drop-down,
categorized under the queue name. If a queue has no "Problem Type"
custom field, or the custom field has no possible values, the queue name
will appear instead.
This is a user-configurable option; advanced users may prefer to revert
to the simple queue name drop-down. This preference appears under the
"General" header in user preferences, as "Create tickets by selecting a
problem type, not a queue."
INSTALLATION
perl Makefile.PL
make
make install
May need root permissions
Edit your /opt/rt5/etc/RT_SiteConfig.pm
If you are using RT 4.2 or greater, add this line:
Plugin('RT::Extension::CreateByProblemType');
For 4.0, add this line:
Set(@Plugins, qw(RT::Extension::CreateByProblemType));
or add RT::Extension::CreateByProblemType to your existing @Plugins
line.
Clear your mason cache
rm -rf /opt/rt5/var/mason_data/obj
Restart your webserver
CONFIGURATION
To default this extension on, add the following to your
etc/RT_SiteConfig.pm:
Set( $CreateByProblemType, 1);
AUTHOR
Best Practical Solutions, LLC <[email protected]>
BUGS
All bugs should be reported via email to
L<[email protected]|mailto:[email protected]>
or via the web at
L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Extension-CreateByProblemType>.
COPYRIGHT
This extension is Copyright (C) 2008-2024 Best Practical Solutions, LLC.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991