This file is indexed.

/etc/cron.daily/dspam-webfrontend is in dspam-webfrontend 3.10.1+dfsg-4ubuntu1.

This file is owned by root:root, with mode 0o755.

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
#!/bin/sh

RUN_NOTIFY="no"

# Source our config
[ -f /etc/default/dspam ] && . /etc/default/dspam

case "$RUN_NOTIFY" in
     [Yy]es)
        [ -x /usr/bin/dspam_notify ] && /usr/bin/dspam_notify
        ;;
      *)
       exit 0
       ;;
esac

exit 0