mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-06-03 21:54:52 +00:00

with the changes for fixing #1948 it is now possible to define tls policies for destinations (remote domains or next-hop transports) instead of only for Domains. This patch reflects this addition by renaming all occurences of Domain with Destination. Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com> Reviewed-By: Dominik Csapak <d.csapak@proxmox.com>
37 lines
775 B
JavaScript
37 lines
775 B
JavaScript
Ext.define('PMG.MailProxyTLSPanel', {
|
|
extend: 'Ext.panel.Panel',
|
|
alias: 'widget.pmgMailProxyTLSPanel',
|
|
|
|
layout: {
|
|
type: 'vbox',
|
|
align: 'stretch'
|
|
},
|
|
|
|
bodyPadding: '0 0 10 0',
|
|
defaults: {
|
|
collapsible: true,
|
|
animCollapse: false,
|
|
margin: '10 10 0 10'
|
|
},
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
var tlsSettings = Ext.create('PMG.MailProxyTLS', {
|
|
title: gettext('Settings')
|
|
});
|
|
|
|
var tlsDestinations = Ext.create('PMG.MailProxyTLSDestinations', {
|
|
title: gettext('TLS Destination Policy'),
|
|
flex: 1
|
|
});
|
|
|
|
me.items = [ tlsSettings, tlsDestinations ];
|
|
|
|
me.callParent();
|
|
|
|
tlsSettings.relayEvents(me, ['activate', 'deactivate', 'destroy']);
|
|
tlsDestinations.relayEvents(me, ['activate', 'deactivate', 'destroy']);
|
|
}
|
|
});
|