summaryrefslogtreecommitdiff
path: root/src/mailman/rest/users.py
diff options
context:
space:
mode:
authorBarry Warsaw2012-07-03 10:36:39 -0400
committerBarry Warsaw2012-07-03 10:36:39 -0400
commit01415190ab44e69a8f09a6411564a7cb288404e8 (patch)
tree869503cb83afa74a17446363a6dbda5ba62d2b8d /src/mailman/rest/users.py
parent3c8a07fc76176a8ea89ee6b73aef571d0b2c81ed (diff)
parent011677d7457f1d4c9cea3b030c8a50e941657812 (diff)
downloadmailman-01415190ab44e69a8f09a6411564a7cb288404e8.tar.gz
mailman-01415190ab44e69a8f09a6411564a7cb288404e8.tar.zst
mailman-01415190ab44e69a8f09a6411564a7cb288404e8.zip
Diffstat (limited to 'src/mailman/rest/users.py')
-rw-r--r--src/mailman/rest/users.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mailman/rest/users.py b/src/mailman/rest/users.py
index 4e1362120..bce541ae5 100644
--- a/src/mailman/rest/users.py
+++ b/src/mailman/rest/users.py
@@ -26,7 +26,7 @@ __all__ = [
]
-from flufl.password import lookup, make_secret, generate
+from passlib.utils import generate_password as generate
from restish import http, resource
from uuid import UUID
from zope.component import getUtility
@@ -102,8 +102,7 @@ class AllUsers(_UserBase):
if password is None:
# This will have to be reset since it cannot be retrieved.
password = generate(int(config.passwords.password_length))
- scheme = lookup(config.passwords.password_scheme.upper())
- user.password = make_secret(password, scheme)
+ user.password = config.password_context.encrypt(password)
location = path_to('users/{0}'.format(user.user_id.int))
return http.created(location, [], None)