This file is indexed.

/usr/share/doc/libemail-address-perl/examples/bench/too_long.pl is in libemail-address-perl 1.908-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
use Email::Address;
$value = q{first@foo.org,} . q{ } x 26 . q{second@foo.org};
use Data::Dumper;
print Dumper(Email::Address->parse($value));