1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

Log the fingerprint used to authenticate in ns_cert.

This commit is contained in:
Sadie Powell
2025-09-26 11:22:20 +01:00
parent 4762e306f9
commit 3390d82ebe
+1 -1
View File
@@ -430,7 +430,7 @@ public:
auto *NickServ = Config->GetClient("NickServ");
u->SendMessage(NickServ, _("SSL certificate fingerprint accepted, you are now identified to \002%s\002."), nc->display.c_str());
Log(NickServ) << u->GetMask() << " automatically identified for account " << nc->display << " via SSL certificate fingerprint";
Log(NickServ) << u->GetMask() << " automatically identified for account " << nc->display << " via SSL certificate fingerprint " << u->fingerprint;
}
void OnNickRegister(User *u, NickAlias *na, const Anope::string &pass) override