mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
14 lines
309 B
Plaintext
14 lines
309 B
Plaintext
|
# documentation: https://rspamd.com/doc/modules/antivirus.html
|
||
|
|
||
|
enabled = false;
|
||
|
|
||
|
ClamAV {
|
||
|
type = "clamav";
|
||
|
servers = "/var/run/clamav/clamd.ctl";
|
||
|
action = "reject";
|
||
|
message = '${SCANNER} FOUND VIRUS "${VIRUS}"';
|
||
|
scan_mime_parts = false;
|
||
|
symbol = "CLAM_VIRUS";
|
||
|
log_clean = true;
|
||
|
}
|