From a8f5d0fddddf7384e1fb284833340005a0f91277 Mon Sep 17 00:00:00 2001 From: amnweb <16545063+amnweb@users.noreply.github.com> Date: Fri, 22 Dec 2023 17:03:07 +0100 Subject: [PATCH] Update emailwiz.sh Open port 110 and 995 for POP3 support --- emailwiz.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emailwiz.sh b/emailwiz.sh index ce8e1f5..2bc983d 100644 --- a/emailwiz.sh +++ b/emailwiz.sh @@ -24,7 +24,7 @@ maildomain="$subdom.$domain" certdir="/etc/letsencrypt/live/$maildomain" # Open required mail ports, and 80, for Certbot. -for port in 80 993 465 25 587; do +for port in 80 993 465 25 587 110 995; do ufw allow "$port" 2>/dev/null done