Fix: allow removal of email address as contact

It seems the current code doesn't allow for removing the email address
from the contact field. This fixes that. This only removes the email
address if an explicit empty email address is specified on the command
line or in the account.conf file. If it is left unspecified on the
command line it still just uses whatever was configured in the
account.conf.
This commit is contained in:
Simon Wydooghe 2020-04-17 15:53:15 +02:00
parent dbf659c575
commit 2febdfc363
No known key found for this signature in database
GPG Key ID: 05D0AB90E6739E5C
1 changed files with 2 additions and 0 deletions

View File

@ -3512,6 +3512,8 @@ updateaccount() {
if [ "$ACME_VERSION" = "2" ]; then
if [ "$ACCOUNT_EMAIL" ]; then
updjson='{"contact": ["mailto:'$ACCOUNT_EMAIL'"]}'
else
updjson='{"contact": []}'
fi
else
# ACMEv1: Updates happen the same way a registration is done.