From 97bbc80b2a9ecb2384f9074d6c37cf8c1da555b8 Mon Sep 17 00:00:00 2001 From: Eli Heady Date: Mon, 5 May 2025 10:29:44 -0400 Subject: [PATCH] INWX: BUGFIX: ALIAS RRs updates are broken due to trailing dot issue (#3564) --- providers/inwx/inwxProvider.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/providers/inwx/inwxProvider.go b/providers/inwx/inwxProvider.go index a4879b1de..3961e5233 100644 --- a/providers/inwx/inwxProvider.go +++ b/providers/inwx/inwxProvider.go @@ -189,7 +189,7 @@ func makeNameserverRecordRequest(domain string, rec *models.RecordConfig) *goinw Records with empty targets (i.e. records with target ".") are allowed. */ - case "CNAME", "NS": + case "CNAME", "NS", "ALIAS": req.Content = content[:len(content)-1] case "MX": req.Priority = int(rec.MxPreference) @@ -456,6 +456,7 @@ func (api *inwxAPI) GetZoneRecords(domain string, meta map[string]string) (model are allowed. */ rtypeAddDot := map[string]bool{ + "ALIAS": true, "CNAME": true, "MX": true, "NS": true,