pmg-gui/js/MailProxyConfiguration.js
Stoiko Ivanov 35cf797dff MailProxyConfiguration.js: whitespace cleanup
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
2019-10-23 11:50:07 +02:00

60 lines
1.2 KiB
JavaScript

Ext.define('PMG.MailProxyConfiguration', {
extend: 'Ext.tab.Panel',
alias: 'widget.pmgMailProxyConfiguration',
title: gettext('Configuration') + ': ' +
gettext('Mail Proxy'),
border: false,
defaults: { border: false },
items: [
{
itemId: 'relaying',
title: gettext('Relaying'),
xtype: 'pmgMailProxyRelaying'
},
{
itemId: 'relaydomains',
title: gettext('Relay Domains'),
xtype: 'pmgRelayDomains'
},
{
itemId: 'ports',
title: gettext('Ports'),
xtype: 'pmgMailProxyPorts'
},
{
itemId: 'options',
title: gettext('Options'),
xtype: 'pmgMailProxyOptions'
},
{
itemId: 'transports',
title: gettext('Transports'),
xtype: 'pmgTransport'
},
{
itemId: 'networks',
title: gettext('Networks'),
xtype: 'pmgMyNetworks'
},
{
itemId: 'tls',
title: gettext('TLS'),
xtype: 'pmgMailProxyTLSPanel'
},
{
itemId: 'whitelist',
title: gettext('Whitelist'),
xtype: 'pmgObjectGroup',
hideGroupInfo: true,
showDirection: true,
otype_list: [1000, 1009, 1001, 1007, 1002, 1008, 1003, 1004],
baseurl: '/config/whitelist'
}
]
});