/etc/dspam/dspam_notify.conf is in dspam-webfrontend 3.10.1+dfsg-4ubuntu1.
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 | #!/usr/bin/perl
# Who will the notifications be sent from?
$FROM = 'dspam@localhost';
# 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 ISP.com. 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 = 'http://localhost';
# 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;
|