NAME
RT::Extension::CustomizeContentType - Customize Attachments' ContentType
VERSION
Version 0.01
INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make install
add RT::Extension::CustomizeContentType to @Plugins in RT's etc/RT_SiteConfig.pm:
Set( @Plugins, qw(... RT::Extension::CustomizeContentType) );
Set(
%ContentTypes,
(
't' => 'text/x-perl-script',
'psgi' => 'text/x-perl-script',
)
);
AUTHOR
sunnavy, <sunnavy at bestpractical.com>
LICENSE AND COPYRIGHT
Copyright 2012 Best Practical Solutions, LLC.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.