]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/VirusDetectorConfiguration.js
fix #2971: DKIM: add gui setting to use From header when signing
[pmg-gui.git] / js / VirusDetectorConfiguration.js
index 96b0b903ec8f63c33a99b555256caf5c6f0f2595..ab744282b29c1fa77cb2c898b17cd37e15d69a0d 100644 (file)
@@ -5,20 +5,26 @@ Ext.define('PMG.VirusDetectorConfiguration', {
     title: gettext('Configuration') + ': ' +
        gettext('Virus Detector'),
 
+    border: false,
+    defaults: { border: false },
+
     items: [
        {
            title: gettext('Options'),
-           xtype: 'pmgVirusDetectorOptions'
+           itemId: 'options',
+           xtype: 'pmgVirusDetectorOptions',
        },
        {
            title: gettext('ClamAV'),
-           html: 'ClamAV'
+           itemId: 'clamav',
+           xtype: 'pmgClamAVDatabase',
        },
        {
            title: gettext('Quarantine'),
-           html: 'Quarantine'
-       }
-    ]
+           itemId: 'quarantine',
+           xtype: 'pmgVirusQuarantineOptions',
+       },
+    ],
 });