1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 12:23:14 +02:00

Fix the name of the DNS record config option for the previous commit.

This commit is contained in:
Sadie Powell
2025-09-06 17:48:46 +01:00
parent eccb338cdd
commit f73159159f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ module
* If DNS validation is enabled, the TXT record to look for when determining
* if the requester controls the domain. Defaults to anope-dns-validation.
*/
#validationcooldown = "anope-dns-validation"
#validationrecord = "anope-dns-validation"
}
command { service = "HostServ"; name = "REQUEST"; command = "hostserv/request"; }
command { service = "HostServ"; name = "ACTIVATE"; command = "hostserv/activate"; permission = "hostserv/set"; }
+1 -1
View File
@@ -582,7 +582,7 @@ public:
{
const auto &block = conf.GetModule(this);
commandhsvalidate.cooldown = block.Get<time_t>("validationcooldown", "5m");
validation_record = block.Get<const Anope::string>("dnsrecord", "anope-dns-validation");
validation_record = block.Get<const Anope::string>("validationrecord", "anope-dns-validation");
}
};