This file is indexed.

/usr/share/horde/gollem/templates/quota.html.php is in php-horde-gollem 3.0.7-1build1.

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
<h1 class="header">
 <strong><?php echo _("Quota Display") ?></strong>
</h1>

<?php if ($this->quotaerror): ?>
<div class="text">
 <em><?php echo _("ERROR:") ?> <?php echo $this->quotaerrormsg ?></em>
</div>
<?php endif ?>
<?php if ($this->noquota): ?>
<div class="text">
 <em><?php echo _("No quota found.") ?></em>
</div>
<?php endif ?>
<?php if ($this->quotadisplay): ?>
 <?php echo $this->quotastyle ?>
  <center><?php echo $this->quotadisplay ?></center>
 </div>
<?php endif ?>

<?php if ($this->closebutton): ?>
<center>
 <input type="button" class="button" id="closebutton" value="<?php echo $this->closebutton ?>" />
</center>
<?php endif ?>