Guten Morgen,
ich habe bei einem Kunden das etwas merkwürdige Setup einer Mailcow die hinter Spamexperts hängen soll.
Weniger für die Spamfilterung sondern für die Mailarchivierung.
Somit müssen die ausgehenden Mails zu Spamexperts, damit Sie dort im Archiv landen, das funktioniert soweit auch, die eingehenden Mails durchlaufen Spamexperts ebenfalls und werden dann zugestellt und eben archiviert.
Ich hänge gerade noch etwas am Problem, das eben nur Mails von Spamexperts angenommen werden sollen.
Es gibt hierfür eine Postfix Konfiguration und nun zur Frage: kann man dies sinnvoll in Mailcow abbilden?
To restrict deliveries to your Postfix server from our filtering nodes and IP addresses, complete the below steps:
Create the file /etc/postfix/access with the content:
antispamcloud.com OK
Execute the command:
postmap /etc/postfix/access
Either:
Add the following to /etc/postfix/main.cf
smtpd_client_restrictions = check_client_access hash:/etc/postfix/access,
permit_mynetworks, reject
OR
If you already have smtpd_client_restrictions defined in /etc/postfix/main.cf, insert the following at the beginning of your definition and replace permit with reject at the end of definition:
“check_client_access hash:/etc/postfix/access”
Reload the Postfix configuration by executing the following command:
sudo postfix reload
Restart Postfix by executing the following command:
/etc/init.d/postfix restart
Ich freue mich über Antworten.