Add note on MX records

This commit is contained in:
Girish Ramakrishnan
2018-05-06 22:14:39 -07:00
parent eb2fb6491c
commit 722b14b13d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ function upsert(dnsConfig, zoneName, subdomain, type, values, callback) {
var data = {
'rrset_ttl': 300, // this is the minimum allowed
'rrset_values': values
'rrset_values': values // for mx records, value is already of the '<priority> <server>' format
};
superagent.put(`${GANDI_API}/domains/${zoneName}/records/${subdomain}/${type}`)