/usr/share/perl5/Email/MIME/Modifier.pm is in libemail-mime-perl 1.910-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | use strict;
## no critic warnings
package Email::MIME::Modifier;
use vars qw[$VERSION];
$VERSION = '1.910';
use Email::MIME;
1;
=head1 NAME
Email::MIME::Modifier - obsolete do-nothing library
=head1 VERSION
version 1.910
=head1 PERL EMAIL PROJECT
This module is maintained by the Perl Email Project
L<http://emailproject.perl.org/wiki/Email::MIME>
=head1 AUTHOR
Casey West, <F<casey@geeknest.com>>.
=head1 COPYRIGHT
Copyright (c) 2004 Casey West. All rights reserved.
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|