diff options
author | Luke Smith <luke@lukesmith.xyz> | 2024-02-10 19:05:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 19:05:23 +0000 |
commit | dc9552f4208ba8ac89fed57e835bc23f8e3e5e00 (patch) | |
tree | 41c78f21694153c7a24372600af5835b2c8d52b2 | |
parent | 48383e082937d05461850886c4eafe9852d27431 (diff) | |
parent | a8f5d0fddddf7384e1fb284833340005a0f91277 (diff) |
Merge pull request #304 from amnweb/patch-1
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 0fd800e..83d65bc 100644 --- a/emailwiz.sh +++ b/emailwiz.sh @@ -30,7 +30,7 @@ ipv6=$(host "$domain" | grep "IPv6" | awk '{print $NF}') [ -z "$ipv6" ] && echo "\033[0;31mPlease point your domain ("$domain") to your server's ipv6 address." && exit 1 # 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 |