Hi, I need help setting up mailcow. Because rspamd is significantly slowing down sending a large number of emails - specifically my newsletters, which are about 150,000 - I need to disable all checks in rspamd for a specific email address
I tried setting a complete bypass of all modules in:
/opt/mailcow-dockerized/data/conf/rspamd/local.d/settings.conf
sendmails_sender_bypass {
from = “sendmail@mydomain.com”;
apply {
symbols_enabled = []; # disable all filters
soft_reject = false;
reject = false;
greylist = false;
add_header = false;
subject = "";
priority = high; # Rspamd rule takes precedence
}
}
But no success. It doesn’t work..
Please, does anyone have a working solution?
Thank you