This file is indexed.

/usr/share/perl5/Net/Server/Mail/ESMTP/8BITMIME.pm is in libnet-server-mail-perl 0.22-1ubuntu1.

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
package Net::Server::Mail::ESMTP::8BITMIME;

use 5.006;
use strict;
use base qw(Net::Server::Mail::ESMTP::Extension);

our $VERSION = "0.14";

sub keyword {
    return '8BITMIME';
}

sub option {
    return ( [ 'MAIL', BODY => \&option_mail_body ], );
}

sub option_mail_body {
    return;
}

1;