add MX record

This commit is contained in:
Balakrishnan Balasubramanian 2023-09-21 17:07:58 -04:00
parent a76eff8814
commit 3f5d108177
2 changed files with 17 additions and 6 deletions

View File

@ -14,7 +14,7 @@ CLI tool to manage cloudflare DNS records
## Features ## Features
1. Add/Modify `A`, `AAAA`, `CNAME` records 1. Add/Modify `A`, `AAAA`, `CNAME`, `MX` records
2. List/Delete records 2. List/Delete records
3. Save all records in JSON format 3. Save all records in JSON format
@ -30,6 +30,7 @@ Usage of cloudflare-dns-cli:
Domain name, e.g. example.com. env var: DOMAIN Domain name, e.g. example.com. env var: DOMAIN
-i value -i value
IP address (default 127.0.0.1) IP address (default 127.0.0.1)
-m Set mx record with cname value
-o string -o string
Path to save all records as json, e.g. ./records.json Path to save all records as json, e.g. ./records.json
-s string -s string

20
main.go
View File

@ -23,6 +23,7 @@ var (
sub = "<UNSET>" sub = "<UNSET>"
path string path string
del = false del = false
mx = false
) )
func genRecord() (libdns.Record, error) { func genRecord() (libdns.Record, error) {
@ -30,11 +31,19 @@ func genRecord() (libdns.Record, error) {
ipv6 := ip.To16() ipv6 := ip.To16()
switch { switch {
case cname != "": case cname != "":
return libdns.Record{ if mx {
Type: "CNAME", return libdns.Record{
Name: sub, Type: "MX",
Value: cname, Name: sub,
}, nil Value: cname,
}, nil
} else {
return libdns.Record{
Type: "CNAME",
Name: sub,
Value: cname,
}, nil
}
case ipv4 != nil: case ipv4 != nil:
return libdns.Record{ return libdns.Record{
Type: "A", Type: "A",
@ -101,6 +110,7 @@ func main() {
flag.StringVar(&cname, "c", cname, "CNAME target") flag.StringVar(&cname, "c", cname, "CNAME target")
flag.StringVar(&path, "o", path, "Path to save all records as json, e.g. ./records.json") flag.StringVar(&path, "o", path, "Path to save all records as json, e.g. ./records.json")
flag.BoolVar(&del, "x", del, "Delete records of subdomain") flag.BoolVar(&del, "x", del, "Delete records of subdomain")
flag.BoolVar(&mx, "m", mx, "Set mx record with cname value")
flag.Parse() flag.Parse()
provider := cloudflare.Provider{APIToken: token} provider := cloudflare.Provider{APIToken: token}