]> git.proxmox.com Git - pmg-gui.git/commitdiff
change display for 'archiveblockencrypted'
authorStoiko Ivanov <s.ivanov@proxmox.com>
Thu, 8 Aug 2019 16:09:21 +0000 (18:09 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Fri, 9 Aug 2019 06:49:24 +0000 (08:49 +0200)
As described in the release notes of ClamAV 0.101.0 the legacy Option
ArchiveBlockEncrypted was used for blocking both encrypted archives _and_
documents. This patch reflects the change in the VirusDetectorOptions.

[0] https://blog.clamav.net/2018/12/clamav-01010-has-been-released.html

Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
js/VirusDetectorOptions.js

index 318e1976015a2648f8b7f055a2d65b05a30689af..73797ea8615bb0a9152d1a9de301346d18ec8afc 100644 (file)
@@ -8,7 +8,7 @@ Ext.define('PMG.VirusDetectorOptions', {
        var me = this;
 
        me.add_boolean_row('archiveblockencrypted',
-                          gettext('Block encrypted archives'));
+                          gettext('Block encrypted archives and documents'));
        
        me.add_integer_row('archivemaxrec', gettext('Max recursion'),
                           { minValue: 1, defaultValue: 5,
@@ -48,7 +48,7 @@ Ext.define('PMG.VirusDetectorOptions', {
                onlineHelp: 'pmgconfig_clamav_options'
            },
            interval: 5000,
-           cwidth1: 200,
+           cwidth1: 270,
            listeners: {
                itemdblclick: me.run_editor
            }