{% extends 'antivirus/settings/ecap.html' %} {% block toolbar_trickling %}class="active"{%endblock%} {% block page_content %}
{% if not form.instance.enable %}
Warning: antivirus checking is disabled. Configured settings will have no effect.
{% else %} {% if form.instance.av_type != 0 %}
Warning: eCAP antivirus module is not activated. Configured settings will have no effect.
{% endif %} {% endif %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error|escape }} {% endfor %}
{% endif %}
{% csrf_token %}
{{form.ecap_clamav_trickling_type}} {% if form.ecap_clamav_trickling_type.errors %} {{form.ecap_clamav_trickling_type.errors|striptags}} {% else %} Type of trickling. It is recommended to trickle headers and limited body. {%endif%}
{{form.ecap_clamav_trickling_size_max}}
{% if form.ecap_clamav_trickling_size_max.errors %} {{form.ecap_clamav_trickling_size_max.errors|striptags}} {% else %} Maximum size of an object to trickle (if Trickle headers and limited body is selected above). Upon reaching this size trickle stops. Default value is 5242880 bytes (5Mb). {%endif%}
{{form.ecap_clamav_trickling_drop_size}}
{% if form.ecap_clamav_trickling_drop_size.errors %} {{form.ecap_clamav_trickling_drop_size.errors|striptags}} {% else %} Maximum size of a drop to trickle. Note, the headers of the response are always tricked in full. Default value is 10 bytes. {%endif%}
{{form.ecap_clamav_trickling_period}}
{% if form.ecap_clamav_trickling_period.errors %} {{form.ecap_clamav_trickling_period.errors|striptags}} {% else %} Seconds between each trickled drop. Default value is 1 second. {%endif%}
{{form.ecap_clamav_trickling_start_delay}}
{% if form.ecap_clamav_trickling_start_delay.errors %} {{form.ecap_clamav_trickling_start_delay.errors|striptags}} {% else %} Trickling starts after specified number of seconds. Default value is 1 second. {%endif%}
{% endblock %}