]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/SpamDetectorConfiguration.js
configuration: options: adapt to new advanced statistic filter default
[pmg-gui.git] / js / SpamDetectorConfiguration.js
index 4ab1302e708331241b4959673e2615ea0b022536..f70b65bd9ba954af084bbb934cd554f9edeb9e4e 100644 (file)
@@ -5,28 +5,31 @@ Ext.define('PMG.SpamDetectorConfiguration', {
     title: gettext('Configuration') + ': ' +
        gettext('Spam Detector'),
 
+    border: false,
+    defaults: { border: false },
+
     items: [
        {
            title: gettext('Options'),
-           html: 'Options'
-       },
-       {
-           title: gettext('Languages'),
-           html: 'Languages'
+           itemId: 'options',
+           xtype: 'pmgSpamDetectorOptions',
        },
        {
            title: gettext('Quarantine'),
-           html: 'Quarantine'
+           itemId: 'quarantine',
+           xtype: 'pmgSpamQuarantineOptions',
        },
        {
-           title: gettext('Backscatter'),
-           html: 'Backscatter'
+           title: gettext('Status'),
+           itemId: 'status',
+           xtype: 'pmgSpamDetectorStatus',
        },
        {
-           title: gettext('Theme'),
-           html: 'Theme'
-       }
-    ]
+           title: gettext('Custom Scores'),
+           itemId: 'scores',
+           xtype: 'pmgSpamDetectorCustomScores',
+       },
+    ],
 });