1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-05-31 11:43:07 +00:00
Files
mailcow-dockerized/data/conf/rspamd/local.d/antivirus.conf
T
2025-12-30 00:46:53 +01:00

14 lines
298 B
Plaintext

{%- if env.SKIP_CLAMD == "n" or env.SKIP_CLAMD == "no" -%}
clamav {
# Scan whole message
scan_mime_parts = false;
#scan_text_mime = true;
#scan_image_mime = true;
symbol = "CLAM_VIRUS";
type = "clamav";
log_clean = true;
servers = "clamd:3310";
max_size = 20971520;
}
{% endif %}