summaryrefslogtreecommitdiff
path: root/modules/commands/ns_group.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-10-17 19:44:05 +0100
committerSadie Powell <sadie@witchery.services>2021-10-17 19:44:05 +0100
commitb7da27ad3ab36e8b246c503963bb7ce745baf83b (patch)
treee75abfbff37e39367eece025f54ef852288be280 /modules/commands/ns_group.cpp
parente5075d2dc2c1437ac8f24d13c274089a5f76ac0a (diff)
Increase the default nickname expiry to 90 days.
Diffstat (limited to 'modules/commands/ns_group.cpp')
-rw-r--r--modules/commands/ns_group.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_group.cpp b/modules/commands/ns_group.cpp
index aa2865776..1d8256bac 100644
--- a/modules/commands/ns_group.cpp
+++ b/modules/commands/ns_group.cpp
@@ -325,7 +325,7 @@ class CommandNSGList : public Command
ListFormatter list(source.GetAccount());
list.AddColumn(_("Nick")).AddColumn(_("Expires"));
- time_t nickserv_expire = Config->GetModule("nickserv")->Get<time_t>("expire", "21d"),
+ time_t nickserv_expire = Config->GetModule("nickserv")->Get<time_t>("expire", "90d"),
unconfirmed_expire = Config->GetModule("ns_register")->Get<time_t>("unconfirmedexpire", "1d");
for (unsigned i = 0; i < nc->aliases->size(); ++i)
{