diff options
author | Carsten Rosenberg <c.rosenberg@heinlein-support.de> | 2018-09-26 14:31:47 +0200 |
---|---|---|
committer | Carsten Rosenberg <c.rosenberg@heinlein-support.de> | 2018-09-26 14:31:47 +0200 |
commit | bb58fb5440a4bc4dc02abbf7f61faa9bf01f17b6 (patch) | |
tree | 6062ed81f9f542fa22c5f48b2e0f369338a2fba1 /conf/modules.d | |
parent | 39a49396e3572f48ba566912888a163fc750fff6 (diff) | |
download | rspamd-bb58fb5440a4bc4dc02abbf7f61faa9bf01f17b6.tar.gz rspamd-bb58fb5440a4bc4dc02abbf7f61faa9bf01f17b6.zip |
[Minor] Antivirus - configureable mime_part scanning
Diffstat (limited to 'conf/modules.d')
-rw-r--r-- | conf/modules.d/antivirus.conf | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/conf/modules.d/antivirus.conf b/conf/modules.d/antivirus.conf index 16f38fbda..803820dbb 100644 --- a/conf/modules.d/antivirus.conf +++ b/conf/modules.d/antivirus.conf @@ -18,8 +18,12 @@ antivirus { clamav { # If set force this action if any virus is found (default unset: no action is forced) # action = "reject"; - # if `true` only messages with non-image attachments will be checked (default true) - attachments_only = true; + # message = '${SCANNER}: virus found: "${VIRUS}"'; + # Scan mime_parts seperately - otherwise the complete mail will be transfered to AV Scanner + #scan_mime_parts = true; + # Scanning Text is suitable for some av scanner databases (e.g. Sanesecurity) + #scan_text_mime = false; + #scan_image_mime = false; # If `max_size` is set, messages > n bytes in size are not scanned #max_size = 20000000; # symbol to add (add it to metric if you want non-zero weight) |