mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
a99ae786db
See #3320
17 lines
373 B
Plaintext
17 lines
373 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;
|
|
max_size = 25000000;
|
|
timeout = 10;
|
|
retransmits = 2;
|
|
}
|