Browse Source

Merge pull request #728 from slingamn/issue727_group_ghost.1

fix #727
tags/v2.0.0-rc1
Shivaram Lingamneni 4 years ago
parent
commit
1ae38091a3
No account linked to committer's email address
2 changed files with 6 additions and 4 deletions
  1. 1
    1
      irc/nickserv.go
  2. 5
    3
      oragono.yaml

+ 1
- 1
irc/nickserv.go View File

@@ -73,7 +73,7 @@ entry for $bSET$b for more information.`,
73 73
 GHOST disconnects the given user from the network if they're logged in with the
74 74
 same user account, letting you reclaim your nickname.`,
75 75
 			helpShort:    `$bGHOST$b reclaims your nickname.`,
76
-			enabled:      servCmdRequiresAuthEnabled,
76
+			enabled:      servCmdRequiresNickRes,
77 77
 			authRequired: true,
78 78
 			minParams:    1,
79 79
 		},

+ 5
- 3
oragono.yaml View File

@@ -306,20 +306,22 @@ accounts:
306 306
     # nick-reservation controls how, and whether, nicknames are linked to accounts
307 307
     nick-reservation:
308 308
         # is there any enforcement of reserved nicknames?
309
-        enabled: false
309
+        enabled: true
310 310
 
311 311
         # how many nicknames, in addition to the account name, can be reserved?
312 312
         additional-nick-limit: 2
313 313
 
314 314
         # method describes how nickname reservation is handled
315
-        #             already logged-in using SASL or NickServ
316 315
         #   timeout:  let the user change to the registered nickname, give them X seconds
317 316
         #             to login and then rename them if they haven't done so
318 317
         #   strict:   don't let the user change to the registered nickname unless they're
319 318
         #             already logged-in using SASL or NickServ
320 319
         #   optional: no enforcement by default, but allow users to opt in to
321 320
         #             the enforcement level of their choice
322
-        method: strict
321
+        #
322
+        # 'optional' matches the behavior of other NickServs, but 'strict' is
323
+        # preferable if all your users can enable SASL.
324
+        method: optional
323 325
 
324 326
         # allow users to set their own nickname enforcement status, e.g.,
325 327
         # to opt in to strict enforcement

Loading…
Cancel
Save