I ran into an issue where the ddns for enom . com wouldn't actually update the dns, even though it reported success.
I dug around a little and found the reason...
Code: Select all
host_part echo "[[DOMAIN]]" | sed -e 's/.*$//g'
Code: Select all
host_part echo "[[DOMAIN]]" | cut -d . -f 1
Basically it was sending a request without a hostname, and in that scenario, it reports success; even though it didn't actually do anything.
Hopefully someone can fix this in the sources for future versions.
