use strict; use warnings; package RT::Extension::ThreadByReference; our $VERSION = '0.01'; =head1 NAME RT-Extension-ThreadByReference - Use ThreadByReference to try and thread messages to tickets =head1 DESCRIPTION When an RT ticketing queue is CCed on a message thread, it can be very difficult to get the subject lines correct in all parts of the message. This can cause a single thread to spawn off tens of different tickets that need manual merging. This extension uses the MIME ThreadByReference headers to search for threads to associate a message with. =head1 RT VERSION Works with RT 4.0 and greater. =head1 INSTALLATION =over =item C =item C =item C May need root permissions =item Edit your F If you are using RT 4.2 or greater, add this line: Plugin('RT::Extension::ThreadByReference'); For RT 4.0, add this line: Set(@Plugins, qw(RT::Extension::ThreadByReference)); or add C to your existing C<@Plugins> line. =item Clear your mason cache rm -rf /opt/rt4/var/mason_data/obj =item Restart your webserver =back =head1 AUTHOR Harlan Lieberman-Berg C<< >> =head1 BUGS All bugs should be reported via email to L or via the web at L. =head1 LICENSE Copyright (c) 2015-2016 by Akamai Technologies, Inc. This software is free software; you can redistribute and/or modify it under the same terms as Perl itself. =cut 1;