diff options
author | amnweb <16545063+amnweb@users.noreply.github.com> | 2023-12-22 17:03:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 17:03:07 +0100 |
commit | a8f5d0fddddf7384e1fb284833340005a0f91277 (patch) | |
tree | 035abab949d4a8a5a6e297e4f3915396f08d2bf0 | |
parent | 9861a6af1ee3ae33a6722a7956761b84a2ab3d04 (diff) |
Update emailwiz.sh
Open port 110 and 995 for POP3 support
-rw-r--r-- | emailwiz.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |