This file is indexed.

/usr/share/graphdefang/event/sendmail/spamd is in graphdefang 2.75-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
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/perl -w
$event{'sendmail'}{'spamd'} = 
sub {
	if ($text =~ m/^\S+: from=(.+), size=.+ msgid=(.+), proto=.+ relay=(.*)$/) {

		# our spamd times may be separated from our sendmail times by a processing
		# delay.  I've set the max potential processing delay to 5 minutes here
		if ($unixtime > ($MaxDBUnixTime-60*5)) {
			my $from = $1;
			my $msgid = $2;
			my $relay = $3;

			if (defined $spamd{$msgid}) {
				my $spamdpid = $spamd{$msgid};

				$event = $spamd{$spamdpid}{'event'};
				$sender = $from;
				$recipient = $spamd{$spamdpid}{'for'};
				$value1 = $spamd{$spamdpid}{'score'};
				$value2 = $relay;

				$FoundNewRow = 1;
			}
		}
	}
};