pmg-gui/js/MailProxyConfiguration.js
2017-02-26 11:39:32 +01:00

44 lines
767 B
JavaScript

Ext.define('PMG.MailProxyConfiguration', {
extend: 'Ext.tab.Panel',
alias: 'widget.pmgMailProxyConfiguration',
title: gettext('Mail Proxy Configuration'),
items: [
{
title: gettext('Relaying'),
xtype: 'pmgMailProxyRelaying'
},
{
title: gettext('Relay Domains'),
xtype: 'pmgRelayDomains'
},
{
title: gettext('Ports'),
xtype: 'pmgMailProxyPorts'
},
{
title: gettext('Options'),
xtype: 'pmgMailProxyOptions'
},
{
title: gettext('Transports'),
xtype: 'pmgTransport'
},
{
title: gettext('Networks'),
html: "Networks"
},
{
title: gettext('TLS'),
html: "TLS"
},
{
title: gettext('Whitelist'),
html: "whitelist"
}
]
});