]> git.proxmox.com Git - pmg-gui.git/blame - js/MailProxyConfiguration.js
fix #5251: login: set autocomplete on password and user
[pmg-gui.git] / js / MailProxyConfiguration.js
CommitLineData
34c3efce
DM
1Ext.define('PMG.MailProxyConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgMailProxyConfiguration',
4
d9e1af94
DM
5 title: gettext('Configuration') + ': ' +
6 gettext('Mail Proxy'),
34c3efce 7
830e5827
DM
8 border: false,
9 defaults: { border: false },
10
34c3efce
DM
11 items: [
12 {
a4504500 13 itemId: 'relaying',
34c3efce 14 title: gettext('Relaying'),
c87d46fb 15 xtype: 'pmgMailProxyRelaying',
34c3efce 16 },
20c9b1f2 17 {
a4504500 18 itemId: 'relaydomains',
20c9b1f2 19 title: gettext('Relay Domains'),
c87d46fb 20 xtype: 'pmgRelayDomains',
20c9b1f2 21 },
34c3efce 22 {
a4504500 23 itemId: 'ports',
34c3efce 24 title: gettext('Ports'),
c87d46fb 25 xtype: 'pmgMailProxyPorts',
34c3efce
DM
26 },
27 {
a4504500 28 itemId: 'options',
35cf797d 29 title: gettext('Options'),
c87d46fb 30 xtype: 'pmgMailProxyOptions',
34c3efce
DM
31 },
32 {
a4504500 33 itemId: 'transports',
35cf797d 34 title: gettext('Transports'),
c87d46fb 35 xtype: 'pmgTransport',
34c3efce
DM
36 },
37 {
a4504500 38 itemId: 'networks',
35cf797d 39 title: gettext('Networks'),
c87d46fb 40 xtype: 'pmgMyNetworks',
34c3efce
DM
41 },
42 {
a4504500 43 itemId: 'tls',
35cf797d 44 title: gettext('TLS'),
c87d46fb 45 xtype: 'pmgMailProxyTLSPanel',
34c3efce 46 },
295fbab8
SI
47 {
48 itemId: 'dkim',
49 title: gettext('DKIM'),
c87d46fb 50 xtype: 'pmgMailProxyDKIMPanel',
295fbab8 51 },
34c3efce 52 {
a4504500 53 itemId: 'whitelist',
049a531b
DM
54 title: gettext('Whitelist'),
55 xtype: 'pmgObjectGroup',
56 hideGroupInfo: true,
57 showDirection: true,
58 otype_list: [1000, 1009, 1001, 1007, 1002, 1008, 1003, 1004],
c87d46fb
TL
59 baseurl: '/config/whitelist',
60 },
61 ],
34c3efce
DM
62});
63
64