Unverified Commit ef5ffa93 authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #2864 from siwyd/fix-updating-empty-email

Fix: allow removal of email address as contact
parents d842ccb2 2febdfc3
...@@ -3512,6 +3512,8 @@ updateaccount() { ...@@ -3512,6 +3512,8 @@ updateaccount() {
if [ "$ACME_VERSION" = "2" ]; then if [ "$ACME_VERSION" = "2" ]; then
if [ "$ACCOUNT_EMAIL" ]; then if [ "$ACCOUNT_EMAIL" ]; then
updjson='{"contact": ["mailto:'$ACCOUNT_EMAIL'"]}' updjson='{"contact": ["mailto:'$ACCOUNT_EMAIL'"]}'
else
updjson='{"contact": []}'
fi fi
else else
# ACMEv1: Updates happen the same way a registration is done. # ACMEv1: Updates happen the same way a registration is done.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment