pmg-gui/js/MailProxyConfiguration.js
Thomas Lamprecht c87d46fbe8 tree wide: eslint --fix
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2020-10-23 13:17:15 +02:00

65 lines
1.3 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: 'dkim',
title: gettext('DKIM'),
xtype: 'pmgMailProxyDKIMPanel',
},
{
itemId: 'whitelist',
title: gettext('Whitelist'),
xtype: 'pmgObjectGroup',
hideGroupInfo: true,
showDirection: true,
otype_list: [1000, 1009, 1001, 1007, 1002, 1008, 1003, 1004],
baseurl: '/config/whitelist',
},
],
});