Merge pull request #5978 from MrPetovan/task/make-username-length-configurable
Make username length configurable
This commit is contained in:
commit
277fe547a1
2 changed files with 29 additions and 6 deletions
|
@ -369,6 +369,18 @@ throttle_limit_month = 0
|
|||
; For instance if your URL is 'http://example.com/directory/subdirectory', set urlpath to 'directory/subdirectory'.
|
||||
urlpath =
|
||||
|
||||
; username_min_length (Integer)
|
||||
; The minimum character length a username can be.
|
||||
; This length is check once the username has been trimmed and multiple spaces have been collapsed into one.
|
||||
; Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
|
||||
username_min_length = 3
|
||||
|
||||
; username_max_length (Integer)
|
||||
; The maximum character length a username can be.
|
||||
; This length is check once the username has been trimmed and multiple spaces have been collapsed into one.
|
||||
; Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
|
||||
username_max_length = 48
|
||||
|
||||
; worker_cooldown (Integer)
|
||||
; Cooldown period in seconds after each worker function call.
|
||||
worker_cooldown = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue