diff options
| author | Barry Warsaw | 2012-12-26 18:55:45 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2012-12-26 18:55:45 -0500 |
| commit | 8c8f2aebc58bdfca948e5dc01bcf6d27a5d09f6e (patch) | |
| tree | 5f664bf416a375d559a918d8267eaa1b0732bbe5 /src/mailman/testing | |
| parent | a492c67e0e9077f95aab3fc371025f9ce0e78d19 (diff) | |
| download | mailman-8c8f2aebc58bdfca948e5dc01bcf6d27a5d09f6e.tar.gz mailman-8c8f2aebc58bdfca948e5dc01bcf6d27a5d09f6e.tar.zst mailman-8c8f2aebc58bdfca948e5dc01bcf6d27a5d09f6e.zip | |
* A user's password can be verified by POSTing to .../user/<id>/login. The
data must contain a single parameter `cleartext_password` and if this
matches, a 204 (No Content) will be returned, otherwise a 403 (Forbidden)
is returned. (LP: #1065447)
Diffstat (limited to 'src/mailman/testing')
| -rw-r--r-- | src/mailman/testing/passlib.cfg | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mailman/testing/passlib.cfg b/src/mailman/testing/passlib.cfg index 225ecd49b..2779ed89d 100644 --- a/src/mailman/testing/passlib.cfg +++ b/src/mailman/testing/passlib.cfg @@ -1,4 +1,10 @@ [passlib] # Use a predictable hashing algorithm with plain text and no salt. This is # *only* useful for debugging and unit testing. -schemes = roundup_plaintext +# +# We add the hex_md5 scheme for hash migration tests. The old hash will be +# hex_md5 (which is not salted and thus reproducible), but since this is +# deprecated here, it will get "ugpraded" to roundup_plaintext when +# successfully verified. +schemes = roundup_plaintext, hex_md5 +deprecated = hex_md5 |
