From 2dbee1f203a3a10029179bc0ec155b1c1ee1848b Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 28 May 2022 12:15:27 +0530 Subject: [PATCH] NxDomain.App: minor change done. --- 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 11b630a6..51c52cb7 100644 --- a/Apps/NxDomainApp/App.cs +++ b/Apps/NxDomainApp/App.cs @@ -98,7 +98,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, "hostadmin@" + dnsServer.ServerDomain, 1, 14400, 3600, 604800, 60); dynamic jsonConfig = JsonConvert.DeserializeObject(config);