-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
56 lines (37 loc) · 1.46 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
NAME
RT::Extension::AttachmentZip - Download Attachments from RT Ticket
DESCRIPTION
This is an extension for Best Practical's Request Tracker
http://www.bestpractical.com/rt
This extension permits you to download the attachments associated with a ticket as a zip file.
There are two options:
1) current
2) all
Current mode downloads just the most recent revision of the attached file
All mode downloads _all_ the revisions, and prepends the revision id number to the filename.
INSTALLATION
perl Makefile.PL
make
make install
May need root permissions
You need at least (https://github.com/bestpractical/rt/commit/e5333f93a2a544b541cca662abcc06ac23d8785b)
to get it working for now
Edit your /opt/rt4/etc/RT_SiteConfig.pm
If you are using RT 4.2 or greater, add this line:
Plugin('RT::Extension::AttachmentZip');
For RT 4.0, add this line:
Set(@Plugins, qw(RT::Extension::AttachmentZip));
or add RT::Extension::AttachmentZip to your existing @Plugins line.
Clear your mason cache
rm -rf /opt/rt4/var/mason_data/obj
Restart your webserver
AUTHORS
Torsten Brumm <technik@picturepunxx.de>
Richard Harman <richard+rtx-attachmentzip@richardharman.com>
LICENCE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
THANKS
Torsten Brumm
Gregor Wolter
Richard Harman