# HG changeset patch # User Kim Alvefur # Date 1471105157 -7200 # Node ID 65d9093525ca006151464cdf34cb230f082e427c # Parent b34f4591366a3d5e905305727a845352d3f6138f mod_block_registrations/README: Correct name of option (thanks Milan*) diff -r b34f4591366a -r 65d9093525ca mod_block_registrations/README.markdown --- a/mod_block_registrations/README.markdown Sat Aug 13 16:23:25 2016 +0200 +++ b/mod_block_registrations/README.markdown Sat Aug 13 18:19:17 2016 +0200 @@ -23,7 +23,7 @@ -------------------------------- --------------- ------------------------------------------------------------------------------------------------------------------------------------------------- block\_registrations\_users `{ "admin" }` A list of reserved usernames block\_registrations\_matching `{ }` A list of [Lua patterns](http://www.lua.org/manual/5.1/manual.html#5.4.1) matching reserved usernames (slower than block\_registrations\_users) - block\_registrations\_allow `nil` A pattern that registered user accounts MUST match to be allowed + block\_registrations\_require `nil` A pattern that registered user accounts MUST match to be allowed Some examples: @@ -31,7 +31,7 @@ block_registrations_matching = { "master$" -- matches anything ending with master: postmaster, hostmaster, webmaster, etc. } - block_registrations_allow = "^[a-zA-Z0-9_-.]$" -- Allow only simple ASCII characters in usernames + block_registrations_require = "^[a-zA-Z0-9_-.]+$" -- Allow only simple ASCII characters in usernames Compatibility =============