Add support for aditional smtp ports - OUT AND IN.

This commit is contained in:
Christoph
2025-01-27 22:15:40 +01:00
parent 40591462ce
commit 877814caf0
5 changed files with 136 additions and 0 deletions

View File

@ -313,6 +313,24 @@ for _ip in $forward_smtpd_ips ; do
done
# ---
# Additional SMTP Listen Ports
# ---
declare -a smtpd_additional_listen_port_arr
for _port in $smtpd_additional_listen_ports ; do
smtpd_additional_listen_port_arr+=("$_port")
done
# ---
# Additional SMTP Outgoing Ports
# ---
declare -a smtpd_additional_outgoung_port_arr
for _port in $smtpd_additional_outgoung_ports ; do
smtpd_additional_outgoung_ports+=("$_port")
don
# ---
# - IP Addresses XMPP Service (Jabber - Prosody)
# ---