diff --git a/cloudflare-ddns.py b/cloudflare-ddns.py index dc24ddd..445c50c 100755 --- a/cloudflare-ddns.py +++ b/cloudflare-ddns.py @@ -107,7 +107,7 @@ def commitRecord(ip): for subdomain in subdomains: subdomain = subdomain.lower().strip() fqdn = base_domain_name - if subdomain != '': + if subdomain != '' and subdomain != '*' and subdomain != '@': fqdn = subdomain + "." + base_domain_name record = { "type": ip["type"],