mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
{% if ANTIVIRUS == 'clamav' %}
|
|
clamav {
|
|
attachments_only = true;
|
|
symbol = "CLAM_VIRUS";
|
|
type = "clamav";
|
|
servers = "{{ ANTIVIRUS_ADDRESS }}";
|
|
{% if ANTIVIRUS_ACTION|default('discard') == 'reject' %}
|
|
action = "reject"
|
|
{% endif %}
|
|
}
|
|
{% endif %}
|