This file is indexed.

/usr/share/pyshared/zope/sendmail/tests/mail.zcml is in python-zope.sendmail 3.7.5-0ubuntu1.

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
26
27
28
<configure xmlns="http://namespaces.zope.org/zope"
           xmlns:mail="http://namespaces.zope.org/mail">

  <include package="zope.sendmail" file="meta.zcml"/>

  <mail:queuedDelivery 
      name="Mail"
      queuePath="path/to/tmp/mailbox"
      mailer="test.smtp"
      permission="zope.Public" />
  
  <mail:directDelivery 
      name="Mail2"
      mailer="test.mailer"
      permission="zope.Public" />

  <mail:smtpMailer 
      name="smtp"
      hostname="localhost"
      port="25"
      username="zope3"
      password="xyzzy"/>
  
  <mail:smtpMailer 
      name="smtp2"
      hostname="smarthost"/>
 
</configure>