Browse Source

Fix name.com DNS API for processing IDNs

pull/4381/head
Mike Lei 2 years ago
committed by GitHub
parent
commit
873948b47e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dnsapi/dns_namecom.sh

4
dnsapi/dns_namecom.sh

@ -10,7 +10,7 @@ Namecom_API="https://api.name.com/v4"
#Usage: dns_namecom_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs" #Usage: dns_namecom_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
dns_namecom_add() { dns_namecom_add() {
fulldomain=$1
fulldomain=$(_idn "$1")
txtvalue=$2 txtvalue=$2
Namecom_Username="${Namecom_Username:-$(_readaccountconf_mutable Namecom_Username)}" Namecom_Username="${Namecom_Username:-$(_readaccountconf_mutable Namecom_Username)}"
@ -63,7 +63,7 @@ dns_namecom_add() {
#Usage: fulldomain txtvalue #Usage: fulldomain txtvalue
#Remove the txt record after validation. #Remove the txt record after validation.
dns_namecom_rm() { dns_namecom_rm() {
fulldomain=$1
fulldomain=$(_idn "$1")
txtvalue=$2 txtvalue=$2
Namecom_Username="${Namecom_Username:-$(_readaccountconf_mutable Namecom_Username)}" Namecom_Username="${Namecom_Username:-$(_readaccountconf_mutable Namecom_Username)}"

Loading…
Cancel
Save