pmg-gui/js/SpamDetectorConfiguration.js
Dominik Csapak 66caa558cc add SpamDetectorStatus.js
show the update status for spamassassin,
and lets it update manually

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2017-10-27 14:47:22 +02:00

29 lines
530 B
JavaScript

Ext.define('PMG.SpamDetectorConfiguration', {
extend: 'Ext.tab.Panel',
alias: 'widget.pmgSpamDetectorConfiguration',
title: gettext('Configuration') + ': ' +
gettext('Spam Detector'),
border: false,
defaults: { border: false },
items: [
{
title: gettext('Options'),
xtype: 'pmgSpamDetectorOptions'
},
{
title: gettext('Quarantine'),
xtype: 'pmgSpamQuarantineOptions'
},
{
title: gettext('Status'),
itemId: 'status',
xtype: 'pmgSpamDetectorStatus'
}
]
});