Don't generate the clamav configuration if ANTIVIRUS is none.
Otherwise the rspamd will try to connect to none, timing out several times and leading to poor performance.master
parent
4d58b322bc
commit
611363cbe4
@ -1,6 +1,8 @@
|
|||||||
|
{% if ANTIVIRUS == 'clamav' %}
|
||||||
clamav {
|
clamav {
|
||||||
attachments_only = true;
|
attachments_only = true;
|
||||||
symbol = "CLAM_VIRUS";
|
symbol = "CLAM_VIRUS";
|
||||||
type = "clamav";
|
type = "clamav";
|
||||||
servers = "antivirus:3310";
|
servers = "antivirus:3310";
|
||||||
}
|
}
|
||||||
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue