mirror of
				https://git.proxmox.com/git/pmg-gui
				synced 2025-11-04 02:27:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			697 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			697 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'),
 | 
						|
	    itemId: 'options',
 | 
						|
	    xtype: 'pmgSpamDetectorOptions',
 | 
						|
	},
 | 
						|
	{
 | 
						|
	    title: gettext('Quarantine'),
 | 
						|
	    itemId: 'quarantine',
 | 
						|
	    xtype: 'pmgSpamQuarantineOptions',
 | 
						|
	},
 | 
						|
	{
 | 
						|
	    title: gettext('Status'),
 | 
						|
	    itemId: 'status',
 | 
						|
	    xtype: 'pmgSpamDetectorStatus',
 | 
						|
	},
 | 
						|
	{
 | 
						|
	    title: gettext('Custom Scores'),
 | 
						|
	    itemId: 'scores',
 | 
						|
	    xtype: 'pmgSpamDetectorCustomScores',
 | 
						|
	},
 | 
						|
    ],
 | 
						|
});
 | 
						|
 | 
						|
 |