This file is indexed.

/usr/share/perl5/Apache/Mason.pm is in libhtml-mason-perl 1:1.48-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
package Apache::Mason;
# Copyright (c) 1998-2005 by Jonathan Swartz. All rights reserved.
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.

# This is a placeholder module whose sole purpose is to create a CPAN
# "alias" Apache::Mason -> HTML::Mason.

$VERSION = '0.4';

sub handler ($$) {
    return 1;
}

1;