This file is indexed.

/usr/share/perl5/Mail/DeliveryStatus/Report.pm is in libmail-deliverystatus-bounceparser-perl 1.542+repacked-1~deb9u1.

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
package Mail::DeliveryStatus::Report;

our $VERSION = '1.542';
$VERSION = eval $VERSION;

use Mail::Header;
use strict;
use warnings;
use vars qw(@ISA);
BEGIN { @ISA = qw(Mail::Header) };

# i just don't like how Mail::Header leaves a \n at the end of everything
# meng

sub get {
  my $string = $_[0]->SUPER::get($_[1]);
  $string = q{} unless defined $string and length $string;
  $string =~ s/\s+$//s;
  return $string;
}

1;