From bc0712b19b5171e7c844bb66d4425a4164a1cc18 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Tue, 31 Dec 2019 21:18:41 -0500 Subject: [PATCH 1/3] fix #727 --- irc/nickserv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/nickserv.go b/irc/nickserv.go index ea18ad41..103cb8aa 100644 --- a/irc/nickserv.go +++ b/irc/nickserv.go @@ -73,7 +73,7 @@ entry for $bSET$b for more information.`, GHOST disconnects the given user from the network if they're logged in with the same user account, letting you reclaim your nickname.`, helpShort: `$bGHOST$b reclaims your nickname.`, - enabled: servCmdRequiresAuthEnabled, + enabled: servCmdRequiresNickRes, authRequired: true, minParams: 1, }, From ea4d4a2f64ffa258d62794886989973dd5687cbe Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Tue, 31 Dec 2019 21:30:51 -0500 Subject: [PATCH 2/3] change nick reservation defaults --- oragono.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/oragono.yaml b/oragono.yaml index 0bf92a3c..eeebbdbc 100644 --- a/oragono.yaml +++ b/oragono.yaml @@ -306,20 +306,22 @@ accounts: # nick-reservation controls how, and whether, nicknames are linked to accounts nick-reservation: # is there any enforcement of reserved nicknames? - enabled: false + enabled: true # how many nicknames, in addition to the account name, can be reserved? additional-nick-limit: 2 # method describes how nickname reservation is handled - # already logged-in using SASL or NickServ # timeout: let the user change to the registered nickname, give them X seconds # to login and then rename them if they haven't done so # strict: don't let the user change to the registered nickname unless they're # already logged-in using SASL or NickServ # optional: no enforcement by default, but allow users to opt in to # the enforcement level of their choice - method: strict + # + # 'optional' matches the behavior of other NickServs, but 'strict' is + # preferable as long as all your users can enable SASL. + method: optional # allow users to set their own nickname enforcement status, e.g., # to opt in to strict enforcement From 37f4836d9982153848880b12a99b5b4fd5da64bb Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Sun, 5 Jan 2020 03:22:51 -0500 Subject: [PATCH 3/3] review fix --- oragono.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oragono.yaml b/oragono.yaml index eeebbdbc..dd60e7db 100644 --- a/oragono.yaml +++ b/oragono.yaml @@ -320,7 +320,7 @@ accounts: # the enforcement level of their choice # # 'optional' matches the behavior of other NickServs, but 'strict' is - # preferable as long as all your users can enable SASL. + # preferable if all your users can enable SASL. method: optional # allow users to set their own nickname enforcement status, e.g.,