From 870223fd401876a7be9f1de71c662cc0a3204d05 Mon Sep 17 00:00:00 2001 From: Christian Ebner Date: Tue, 21 Jan 2020 10:24:30 +0100 Subject: [PATCH] macros: add macro for Proxmox Mail Gateway web interface Macro to allow access to the PMG web interface when hosted on PVE. Signed-off-by: Christian Ebner --- src/PVE/Firewall.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/PVE/Firewall.pm b/src/PVE/Firewall.pm index 4a534d0..255bb9a 100644 --- a/src/PVE/Firewall.pm +++ b/src/PVE/Firewall.pm @@ -394,6 +394,10 @@ my $pve_fw_macros = { { action => 'PARAM', proto => 'udp', dport => '5632' }, { action => 'PARAM', proto => 'tcp', dport => '5631' }, ], + 'PMG' => [ + "Proxmox Mail Gateway web interface", + { action => 'PARAM', proto => 'tcp', dport => '8006' }, + ], 'POP3' => [ "POP3 traffic", { action => 'PARAM', proto => 'tcp', dport => '110' },