'''Support password hashes imported from other wiki systems''' When converting user accounts from a different wiki system, the password hash might be different from `{SSHA}`, which MoinMoin uses. When we converted http://www.gnewsense.org/ from [[http://www.pmwiki.org|PmWiki]] to MoinMoin, some of the user accounts used `{DES}` hashes, some used `{APR1}`. We wanted the >3000 users to be able to log in to the new site without any action on their part. MoinMoin already accepts `{SHA}` hashes and upgrades them to `{SSHA}`. This patch adds support for: * `{DES}` (Unix ''crypt(3)'') * `{MD5}` (MD5-based ''crypt()'') * `{APR1}` (Apache ''.htpasswd''). {{attachment:imported_pwd_hashes.patch}} Implemented by: http://hg.moinmo.in/moin/1.9/rev/69668ad0cae7 ---- CategoryFeatureImplemented