diff options
author | Sadie Powell <sadie@witchery.services> | 2021-10-17 19:44:05 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-10-17 19:44:05 +0100 |
commit | b7da27ad3ab36e8b246c503963bb7ce745baf83b (patch) | |
tree | e75abfbff37e39367eece025f54ef852288be280 /modules/commands/ns_group.cpp | |
parent | e5075d2dc2c1437ac8f24d13c274089a5f76ac0a (diff) |
Increase the default nickname expiry to 90 days.
Diffstat (limited to 'modules/commands/ns_group.cpp')
-rw-r--r-- | modules/commands/ns_group.cpp | 2 |
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) { |