From 04de9120b80d29d979396247bc5723877ce604e8 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sun, 19 May 2024 14:48:56 +0530 Subject: [PATCH] NxDomain: minor change. --- Apps/NxDomainApp/App.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apps/NxDomainApp/App.cs b/Apps/NxDomainApp/App.cs index 77a5a919..9e5d485e 100644 --- a/Apps/NxDomainApp/App.cs +++ b/Apps/NxDomainApp/App.cs @@ -90,7 +90,7 @@ namespace NxDomain public Task InitializeAsync(IDnsServer dnsServer, string config) { - _soaRecord = new DnsSOARecordData(dnsServer.ServerDomain, "hostadmin@" + dnsServer.ServerDomain, 1, 14400, 3600, 604800, 60); + _soaRecord = new DnsSOARecordData(dnsServer.ServerDomain, dnsServer.ResponsiblePerson.Address, 1, 14400, 3600, 604800, 60); using JsonDocument jsonDocument = JsonDocument.Parse(config); JsonElement jsonConfig = jsonDocument.RootElement;