This file is indexed.

/usr/share/horde/ingo/templates/smartmobile/rules.html.php is in php-horde-ingo 3.2.8-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
<div id="rules" data-role="page">
 <?php echo $this->smartmobileHeader(array('logout' => true, 'portal' => true, 'title' => _("Rules"))) ?>

 <div data-role="content">
  <ul data-role="listview" data-filter="true" id="ingo-rules-list">
<?php if (empty($this->list)): ?>
   <li><?php echo _("No rules") ?></li>
<?php else: ?>
<?php foreach ($this->list as $v): ?>
   <li>
    <a href="<?php echo $v['url'] ?>">
     <?php echo $v['img'] ?>
     <?php echo $this->h($v['name']) ?>
    </a>
   </li>
<?php endforeach; ?>
<?php endif; ?>
  </ul>
 </div>
</div>