From fa331e6ef2c98914b3a51147b75f5425adde65c2 Mon Sep 17 00:00:00 2001 From: Skull Writter <7103685+skullwritter@users.noreply.github.com> Date: Tue, 30 Oct 2018 16:25:24 -0100 Subject: [PATCH] removed dns and mail support - checking le --- bin/v-update-letsencrypt-ssl | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/bin/v-update-letsencrypt-ssl b/bin/v-update-letsencrypt-ssl index 2771f9f8..6e26d7e5 100755 --- a/bin/v-update-letsencrypt-ssl +++ b/bin/v-update-letsencrypt-ssl @@ -36,17 +36,6 @@ for user in $users; do if [ ! -z "$webSuspended" ]; then continue; fi; - # Working on DNS domain check - if is suspended - dnsSuspended=$(grep "DOMAIN='$domain'" $USER_DATA/dns.conf |grep "SUSPENDED='no") - if [ ! -z "$dnsSuspended" ]; then - continue; - fi; - #dunno if this is needed, but i will ut it in the same way as web and dns - # Working on MAIL domain check - if is suspended - mailSuspended=$(grep "DOMAIN='$domain'" $USER_DATA/mail.conf |grep "SUSPENDED='no") - if [ ! -z "$mailSuspended" ]; then - continue; - fi crt="$VESTA/data/users/$user/ssl/$domain.crt" crt_data=$(openssl x509 -text -in "$crt") expire=$(echo "$crt_data" |grep "Not After")