From 548d54794917713f71dbf97d1174ba1f73499b96 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Thu, 26 Jan 2023 19:51:36 -0500 Subject: [PATCH] it makes elegant sense in my head --- emailwiz.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/emailwiz.sh b/emailwiz.sh index fac8671..f6d6dfa 100644 --- a/emailwiz.sh +++ b/emailwiz.sh @@ -52,7 +52,9 @@ done possiblecert="$(certbot certificates 2>/dev/null | grep "Domains:\.* $maildomain\(\s\|$\)" -A 2 | awk '/Certificate Path/ {print $3}' | head -n1)" && certdir="${possiblecert%/*}" -[ ! -d "$certdir" ] && case "$(netstat -tulpn | grep ":80\s")" in +[ ! -d "$certdir" ] && + certdir="/etc/letsencrypt/live/$maildomain" && + case "$(netstat -tulpn | grep ":80\s")" in *nginx*) apt install -y python3-certbot-nginx certbot -d "$maildomain" certonly --nginx --register-unsafely-without-email --agree-tos