I recently answered a few questions here on this topic. It seems that most people are not aware of it, but this is the intended behavior.
All emails go through the entire SA filter chain. At the end of this chain, the action object is executed...
I had the same problem on one host yesterday.
Thought this was solved over a year ago.
modify /etc/network/interfaces with a post-up command helped.
iface eno1 inet manual
post-up ethtool -K eno1 tso off gso off
I abused the custom script for those actions.
Use a custom script:
#!/usr/bin/env bash
set -euo pipefail
# PMG custom check API v1: args: APIVERSION QUEUEFILENAME
if [[ $# -ne 2 ]]; then
echo "usage: $0 APIVERSION QUEUEFILENAME" >&2
exit 1...
Reject unknown senders ("domain not found") or reject unknown client ("cannot find your hostname") is a postfix/postscreen feature and the decision to reject is made long before the SA filter and the Mail Filter -> Who Object -> Welcomelist.
You...
The Mail Proxy -> Welcomelist is a postfix senderaccess welcomelist.
It is a "Trusted Host" feature that prevents getting blocked in postscreen, i.e. for SPF or DNSBL tests. It has nothing to do with the SA checks you did above.
For whitelisting...
A big thank you goes to the giants whose shoulders I stood on:
christian-b for the rspamd integration: https://forum.proxmox.com/threads/integrate-rspamd-as-custom-script.159110/
heutger
zolthar and stoiko ivanov for the GeoIP integration...
Now we have exhausted all third-party plugins. But we can also create our own SA filters. One of the biggest nuisances is "BCC spam". Someone creates a freemail account with a provider that has no outgoing limit and sends spam emails where all...
I've been intensively working with Proxmox MG over the past few days and found the documentation not always helpful.
My spam has been reduced by 95%, and I would like to explain here what I changed compared to the out-of-the-box installation to...
Ich hatte die Frage hier auch schon und sie wurde mir nie beantwortet.
Ich löse das, indem ich den CustomScore auf 4.9 begrenze*, es sei denn er ist sehr hoch, dann soll die Mail ohnehin raus.
Ich hätte die Antwort auf deine Frage aber auch...