Software /
code /
prosody-modules
Changeset
2715:9b43b7fc3558
mod_block_registrations: fix example regex
author | tmolitor <thilo@eightysoft.de> |
---|---|
date | Fri, 12 May 2017 23:41:31 +0200 |
parents | 2714:75b137cf869a |
children | 2716:02a7f9fe44fa |
files | mod_block_registrations/README.markdown |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_block_registrations/README.markdown Mon May 08 19:39:43 2017 +0200 +++ b/mod_block_registrations/README.markdown Fri May 12 23:41:31 2017 +0200 @@ -31,7 +31,7 @@ block_registrations_matching = { "master$" -- matches anything ending with master: postmaster, hostmaster, webmaster, etc. } - block_registrations_require = "^[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 =============