add information about adding the following to the Apache2 configuration file:
Header always set X-Frame-Options "SAMEORIGIN"
Thanks to Daniel O'Connor for the report.
This commit adds a buildable Dockerfile based on the httpd apache2
docker image with sa_cache cron support built in.
It also comes with a docker-compose example file.
threshold to detect case where postscreen reject an ip address. By
default reject: RCPT from ... are not logged by postfix, we mark the
message as DNSBL rejected when DNSBL rank value is upper or equal.
Default: 3. Thanks to Hasan Calisir for the feature request.
Thanks to Peter Mares for the feature request.
Fix bug on extracting subject starting with Fwd: or Re:
Remove code for parsing ipv6 addresses in data files, it should be no
more used as character : is replaced by _ in ipv6 address at storage
time.
sender relay as Ip addresses. Actually when possible sendmailanalyzer
extract the fqdn part of the relay not the Ip address. Enable this
directive if you just want Ip addresses.
following mail header score. Thanks to Hans Mayer,for the report.
Add report of all recipients addresses for spam with multiple recipients
as when messages are discarded they all have the same ID. This was
resulting in the right count of senders but wrong count of recipients.
Note that in this case the spam received counter is still related to
senders count as they are not sent. Thanks to Hans Mayer for the report.
limited to the LOCAL_DOMAIN configuration directive. This is useful
for mailserver which have virtual users and domains in their database
and therefor no static configuration. Here are the new configuration
directives added to the sendmailanalyzer configuration file and their
explanation:
- VIRTUAL_DOMAIN_DB DBI:mysql:database=mailserver:host=localhost
Leave this unconfigured if you don't have virtual domains in a database
set up or set the value to a valid Perl DBI DSN (data source name). Here
this is a connection to a MySQL database so it require that Perl module
DBI and DBD::MySQL are installed on your system.
- VIRTUAL_DOMAIN_DB_USER and VIRTUAL_DOMAIN_DB_PASS
The user and password to use to connect to the database.
- VIRTUAL_DOMAIN_DB_QUERY SELECT name FROM virtual_domains
The SQL query to use to retrieve the list of virtual domain that will
be appended to the LOCAL_DOMAIN array. See LOCAL_DOMAIN for more
information.
Thanks to thinksilicon for the patch.