diff options
author | banah <banah@2b6ed08e-c90c-0410-9317-ae88bde05ade> | 2007-05-13 16:22:47 +0000 |
---|---|---|
committer | banah <banah@2b6ed08e-c90c-0410-9317-ae88bde05ade> | 2007-05-13 16:22:47 +0000 |
commit | d46c0a8367821453c7fb6eff75ec6f26afdcb55c (patch) | |
tree | 8e8f438bd21f19191e43ae1e08e6759fa48a2e20 /py-bin | |
parent | 2e504e29b7e8c17d1e3c7937161365f3efb34c8f (diff) |
fix: allow uppercase letters in passwords
git-svn-id: https://rfd.cronopios.org/immerda/jabber@66 2b6ed08e-c90c-0410-9317-ae88bde05ade
Diffstat (limited to 'py-bin')
-rw-r--r-- | py-bin/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py-bin/config.py b/py-bin/config.py index a5728ae..d43b206 100644 --- a/py-bin/config.py +++ b/py-bin/config.py @@ -20,7 +20,7 @@ extra_domains = ["imsg.ch"] # username and password policy user_re ='^[a-zA-Z0-9_\-.]+$' forbidden_users = ['admin', 'administrator'] -password_re = '^[a-z0-9_\-.]+$' +password_re = '^[a-zA-Z0-9_\-.]+$' min_password_length = debugmode and 2 or 8 # path configuration |