]> git.proxmox.com Git - pmg-gui.git/blob - js/MailProxyConfiguration.js
MyNetworks.js: add GUI for trusted networks
[pmg-gui.git] / js / MailProxyConfiguration.js
1 Ext.define('PMG.MailProxyConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgMailProxyConfiguration',
4
5 title: gettext('Mail Proxy Configuration'),
6
7 items: [
8 {
9 title: gettext('Relaying'),
10 xtype: 'pmgMailProxyRelaying'
11 },
12 {
13 title: gettext('Relay Domains'),
14 xtype: 'pmgRelayDomains'
15 },
16 {
17 title: gettext('Ports'),
18 xtype: 'pmgMailProxyPorts'
19 },
20 {
21 title: gettext('Options'),
22 xtype: 'pmgMailProxyOptions'
23 },
24 {
25 title: gettext('Transports'),
26 xtype: 'pmgTransport'
27 },
28 {
29 title: gettext('Networks'),
30 xtype: 'pmgMyNetworks'
31 },
32 {
33 title: gettext('TLS'),
34 html: "TLS"
35 },
36 {
37 title: gettext('Whitelist'),
38 html: "whitelist"
39 }
40 ]
41 });
42
43