This file is indexed.

/etc/dspam/dspam_notify.conf is in dspam-webfrontend 3.10.2+dfsg-13.

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
29
#!/usr/bin/perl

# Who will the notifications be sent from?
$FROM_EMAIL = 'dspam@example.org';
$FROM_NAME = 'DSPAM Filter';
  
# What will the notification subject be?
$SUBJECT = 'Daily Spam Quarantine Summary';

# What text to display in the body?
$BODY = qq!<p>This report has been sent to you from the Anti-Spam service hosted at example.org. Below is a list of items in your quarantine area. You can view or release a message by clicking on the links (right). If you no longer wish to receive these reports then you may change the option on the 'Preferences' page.</p>!;

# Quarantine URL
$DSPAM_URL = 'https://dspam.example.org';

# Maximum of entries to show in mail
$MAX_ITEMS = 200;

# Address of your SMTP server? localhost should be fine.
$SERVER = 'localhost';

# Port of your SMTP server? 25 should be fine
$PORT = '25';

# Enable User Preference Checking (Very CPU Intensive!!!) Not Recommended for more than 500 email accounts.
$PREF_CHECK = 0;

# Configuration was successful
1;