Merge pull request #348 from benschumacher/master

Update MX records using DNS Update API / Management UI
This commit is contained in:
Joshua Tauberer 2015-03-04 13:42:02 -05:00
commit e2fa01e0cf
2 changed files with 2 additions and 1 deletions

View File

@ -691,7 +691,7 @@ def set_custom_dns_record(qname, rtype, value, env):
v = ipaddress.ip_address(value)
if rtype == "A" and not isinstance(v, ipaddress.IPv4Address): raise ValueError("That's an IPv6 address.")
if rtype == "AAAA" and not isinstance(v, ipaddress.IPv6Address): raise ValueError("That's an IPv4 address.")
elif rtype in ("CNAME", "TXT", "SRV"):
elif rtype in ("CNAME", "TXT", "SRV", "MX"):
# anything goes
pass
else:

View File

@ -35,6 +35,7 @@
<option value="AAAA" data-hint="Enter an IPv6 address.">AAAA (IPv6 address)</option>
<option value="CNAME" data-hint="Enter another domain name followed by a period at the end (e.g. mypage.github.io.).">CNAME (DNS forwarding)</option>
<option value="TXT" data-hint="Enter arbitrary text.">TXT (text record)</option>
<option value="MX" data-hint="Enter record in the form of PRIORIY DOMAIN., including trailing period (e.g. 20 mx.example.com.).">MX (mail exchanger)</option>
</select>
</div>
</div>